How to do decryption in Win RT using AES (AesCbcPkcs5)

Hi,
How to implement Encryption and Decryption in AES (AesCbcPkcs5) in Win RT using C#. It is available in namespace -using System.Security.Cryptography;.
But it is not available in Win RT under namespace using Windows.Security.Cryptography;
Also in my app server side encryption is implemented in AesCbcPkcs5 . But it is not available in Win RT so I have tried decryption with
SymmetricAlgorithmNames.AesCbcPkcs7  algorithm. But I am getting exception as
The supplied user buffer is not valid for the requested operation. (Exception from HRESULT: 0x800706F8) .
I have read some blog in that they have mentioned that both are Same. But it is not work here. I have given 3 days to solve this issue but I am not getting solution on it. If there is any third party tool(.dll) is available to fix this problem so let
me know. 
Please help me.
Thanks

As I can find from the MSDN documentation, there is no way to decrypt the pkcs5 padding. All the algorithms are list here:
SymmetricAlgorithmNames class
If someone still need help on this topic, I would recommend you to open a support ticket, perhaps write a algorithm to decrypt it follow the instruction:
https://www.ietf.org/rfc/rfc2898.txt  or you can simply feedback to our product team as a feature request:
https://wpdev.uservoice.com/forums/110705-dev-platform
Thanks for your understanding,
--James
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • On a new imac how much of the HDD is already used with the OS,iLife,apps..

    Looking to buy my 1st ever iMac, the one Im going to get is the base one, with 250Gb HDD (I may upgrade to 320Gb for UK £29 though)
    My question is how much of the HDD is already used by OS X and everything on it? I understand there is some free trial stuff onthat can be installed eg MS Office, iWork etc I would want these removed as wouldnt want them so how much is left before you start adding your own stuff
    I also want to install Win XP on it so need to know what to do, 250Gb in todays computing is very stingy I think, so I need an idea
    cheers

    Here's are some disk usage information from my 20" white C2D. The numbers
    are running totals that include periodic software updates and some of my own
    stuff -- but that would be less than 0.5 GB of the final total.
    OS-X with "no optional packages" is a very usable system; it includes 'core'
    applications such as Safari, iTunes, Quicktime. It does not include any of the
    iLife apps or the iWork/MS_Office test-drive bloatwares.
    The large increase in disk usage for a minimum Leopard system is partly due
    to the inclusion of more apps in the 'core' OS package. Some things that were
    optional in Tiger have become part of the "minimum" Leopard install.
    The Xcode software development tools are a standard part of every OS-X
    distribution, but since most customers have no use for them, they're not
    included in the factory-installed disk image. If you don't plan to install
    them, subtract 3.4 GB from the final tally.
    Factory pre-installed Tiger 10.4.8 & bundled software .................. 16.4 GB
    Erase & Install Tiger 10.4.8 with NO optional packages .................. 2.9 GB
    SoftwareUpdate to 10.4.10, with NO optional packages .................. 3.1 GB
    Erase & Install Leopard 10.5.0 with NO optional packages ............... 6.6 GB
    SoftwareUpdate (11/11, immediately after Leopard install) ............. 6.7 GB
    Install Xcode SW development tools from Leopard DVD ................. 10.1 GB
    Install & SoftwareUpdate iLife'08 (except iWeb & GarageBand) ....... 12.3 GB
    SoftwareUpdate to Leopard 10.5.1.................................................. 12.5 GB
    IMO, 250 GB is FAR more than you'll ever need for installable software plus
    a sizeable collection of music/photos. OTOH, no amount of disk space will
    ever be enough for an avid music/photo/video junkie, and everyone should
    have an external backup drive. So, stick with the standard internal drive and
    buy more external storage.
    ...a billion here, a billion there -- and pretty soon you're talkin' 'bout alot of money,
    Looby

  • Decryption of image using AES in windows 8.1

     Hi ,
        I am developing an app in windows 8.1, in which I got image in decryption format ,
    it was encrypted using AES and I know the key
    I tried in oneway but i am getting an error "The supplied user buffer is not valid for the requested operation"
    please help how to decrypt the image and bind it to ui
    Thanks
    Sarvesh
    sarvesh

    Hi Sarvesh,
    I've replied you in another thread, please feel free to check it :)
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problem Decrypting a text file using OpenPGP

    I am new in java cryptography. We have a file from vendor which needs to be decrypted. I am using the code below which gives me error after the bolded comment line. Below the code are the error messages that I get.
    Can anyone give me any assistance in telling me what is the problem.
    Thank you,
    Ed
    package cryptix.openpgp.examples;
    import cryptix.message.EncryptedMessage;
    import cryptix.message.KeyBundleMessage;
    import cryptix.message.LiteralMessage;
    import cryptix.message.Message;
    import cryptix.message.MessageException;
    import cryptix.message.MessageFactory;
    import cryptix.message.NotEncryptedToParameterException;
    import cryptix.openpgp.PGPSignedMessage;
    import cryptix.pki.KeyBundle;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.security.NoSuchAlgorithmException;
    import java.security.UnrecoverableKeyException;
    import java.util.Collection;
    public class Decrypt {
    public static void main(String[] args) {
    java.security.Security.addProvider(
    new cryptix.jce.provider.CryptixCrypto() );
    java.security.Security.addProvider(
    new cryptix.openpgp.provider.CryptixOpenPGP() );
    KeyBundle bundle = null;
    MessageFactory mf = null;
    try {
    FileInputStream in = new FileInputStream("secretkey.asc");
    mf = MessageFactory.getInstance("OpenPGP");
    Collection msgs = mf.generateMessages(in);
    KeyBundleMessage kbm = (KeyBundleMessage)msgs.iterator().next();
    bundle = kbm.getKeyBundle();
    in.close();
    } catch (IOException ioe) {
    System.err.println("IOException... You did remember to run the "+
    "GenerateAndWriteKey example first, right?");
    ioe.printStackTrace();
    System.exit(-1);
    } catch (NoSuchAlgorithmException nsae) {
    System.err.println("Cannot find the OpenPGP MessageFactory. "+
    "This usually means that the Cryptix OpenPGP provider is not "+
    "installed correctly.");
    nsae.printStackTrace();
    System.exit(-1);
    } catch (MessageException me) {
    System.err.println("Reading keybundle failed.");
    me.printStackTrace();
    System.exit(-1);
    EncryptedMessage em = null;
    try {
    FileInputStream in = new FileInputStream("C:\\Java\\enc_dec\\pgptestin.pgp");
    Collection msgs = mf.generateMessages(in);
    em = (EncryptedMessage)msgs.iterator().next();
    in.close();
    } catch (IOException ioe) {
    System.err.println("IOException... You did remember to run the "+
    "Encrypt example first, right?");
    ioe.printStackTrace();
    System.exit(-1);
    } catch (MessageException me) {
    System.err.println("Reading message failed.");
    me.printStackTrace();
    System.exit(-1);
    try {
         // System.out.println(em);
          // if fails after the below statement
    Message msg = em.decrypt(bundle,"password".toCharArray());
    PGPSignedMessage pmsg = (PGPSignedMessage)msg;
    LiteralMessage lmsg = (LiteralMessage)pmsg.getContents();
    FileOutputStream out = new FileOutputStream("C:\\Java\\enc_dec\\pgptestout.txt");
    out.write(lmsg.getTextData().getBytes());
    out.close();
    } catch (NotEncryptedToParameterException netpe) {
    System.err.println("Not encrypted to this key.");
    netpe.printStackTrace();
    System.exit(-1);
    } catch (UnrecoverableKeyException uke) {
    System.err.println("Invalid passphrase.");
    uke.printStackTrace();
    System.exit(-1);
    } catch (MessageException me) {
    System.err.println("Decrypting message failed.");
    me.printStackTrace();
    System.exit(-1);
    } catch (IOException ioe) {
              System.err.println("Writing the decrypted message failed.");
              ioe.printStackTrace();
              System.exit(-1);
    Here are the error messages:
    Exception in thread "main" java.lang.RuntimeException: NYI
         at cryptix.jce.provider.elgamal.ElGamalCipher.engineGetParameters(ElGamalCipher.java:120)
         at javax.crypto.Cipher.a(DashoA12275)
         at javax.crypto.Cipher.init(DashoA12275)
         at javax.crypto.Cipher.init(DashoA12275)
         at cryptix.openpgp.algorithm.PGPElGamal.decrypt(PGPElGamal.java:612)
         at cryptix.openpgp.packet.PGPPublicKeyEncryptedSessionKeyPacket.decrypt(PGPPublicKeyEncryptedSessionKeyPacket.java:189)
         at cryptix.openpgp.provider.PGPEncryptedMessageImpl.decrypt(PGPEncryptedMessageImpl.java:186)
         at cryptix.openpgp.provider.PGPEncryptedMessageImpl.decrypt(PGPEncryptedMessageImpl.java:315)
         at cryptix.openpgp.examples.Decrypt.main(Decrypt.java:118)
    Message was edited by:
    eidasharif
    Message was edited by:
    eidasharif
    Message was edited by:
    eidasharif
    Message was edited by:
    eidasharif
    Message was edited by:
    eidasharif
    Message was edited by:
    eidasharif
    Message was edited by:
    eidasharif
    null

    You have to download and install something called "Unlimited strength jurisdiction policy files 5.0", is the solution por the NYI (Not Yet implemented) problem. It worked in my case (you can download the file from Sun, and read the readme to know how to install it)

  • I'm not able to see all the tabs words on itunes window. I think I uninstall the font on my system. How I can know wich fonts Itunes uses for install it?

    I think I uninstall the font on my system. How I can know wich fonts Itunes uses for install it?
    I'm using Win Vista 64b - but I try already to install all my fot library but nothing happen,, still not able to see some menu's from lists, tabs titles, etc.
    I search through itune's web site and not sign of info about how can I fix this problem...
    help!

    It has something to do with Segoe fonts in your system.
    Refer this link for solution
    iTunes 10.1 Missing Text

  • Hi Freinds......How to Encrypt/Decrypt Text file in j2me

    Hello friendz.,,
    I m having problem with textfile exncryption decryption in j2me..
    Can abybode tell me how to encrypt/decrypt Text file using J2ME API's.......
    PLZ help me .......
    Thanx in advance
    regards,
    Parag

    http://www.mobilefish.com/developer/bouncycastle/bouncycastle.html
    http://www-128.ibm.com/developerworks/library/j-midpds.html

  • Wine - not using correct fonts under Xorg 7.0

    How can I tell Wine to use fonts from the correct location under Xorg 7.0? There's nothing in winecfg that I can see related to it, and no file in /etc/wine to alter...

    Snowman wrote:wine 0.9.5-1 was out today. Did you try it?
    I did indeed, but sadly it had no effect.

  • I cannot load my google calendar, how can i decrypt the connection in order to have access?

    The information about this website says that the page has been encrypted because there is no authorized owner. I need access to my google calendar from work.
    How can i decrypt the connection? Is there other way to fix the problem?

    Restart holding down the CMD+R keys, launch Disk Utility and erase the HD, quit DU, and restore the OS. On first boot, use the Setup Assistant to do the migration. Details in Pondini's Setup New Mac guide.

  • HP ProDesk 400 G1 SFF, Running Windows 8.1: How do I decrypt my harddrive...

    HP ProDesk 400 G1 SFF, Running Windows 8.1:  How do I decrypt my harddrive, which I accidentally encrypted?  I have the thumbdrive with HP Encryption on it.

    Hi,
    Can you please provide more details on how you "accidentally" encrypted the HDD?
    I have used encryption tech and found it requires some degree of thought to accomplish the goal.
    Jaco
    Errare humanum est.

  • HT5077 Decryption of Encrypted hfs+ using Lion OS X

    How to Decrypt coreStorage (Encrypted hfs+ using Lion OS X) file system. because i forgot my encrypted drive(hfs+ encrypted) password or how to change password of this drive. please help me regarding this file system as soon as possible.

    I'm afraid you're out of luck.  The whole purpose of encryption is so it can be accessed only by someone with the password.
    Is this your OSX drive?  If so, did you record the Recovery Key?  And/or register it with Apple?  If you did, follow the procedures in OS X Lion: About FileVault 2.
    Note this in the Additional Information section:
    "Please take note that the encryption used in FileVault 2 will make accessing data on your encrypted drive impossible without the permitted user accounts' passwords or the recovery key. When you choose to turn on FileVault, you will no longer be able to auto-login. Take great care in choosing an account password that you feel is both secure and easy for you to remember. When enabling FileVault, carefully write it down or be certain to make a copy of exactly what is shown and store it outside of your encrypted disk. If choosing to store your recovery key with Apple, take great care in choosing your questions and providing answers you can, if needed, clearly convey to an AppleCare phone support advisor." (emphasis added)

  • HT201248 My email address associated with my Apple ID on my iPad has been turned off from the ISp (U.S. army).   I have a new gmail account with a new Apple ID. How do I get my iPad to use my gmail account?

    Help. My old @us.army.mil email address was terminated by the army. I used that address to register my first apple id account on my iPad. I can't remember my original Apple ID number and if I ask to reset my password, Apple sends the reset link to my old non-working email address. I have a new gmail address and a new Apple ID number associated with that address. How do I get my iPad to use my new gmail address and new apple ID number?  Remember, I can't log out of my old account because I can't remember the password. Amd Apple will only reset the password by sending a link to my old, non functioning army email account. ( I hate army webmail for canceling all retired military email accounts). John Marc
    <Personal Information Edited By Host>

    Hi John,
    You can change the email address associated with an Apple ID using the steps in this article -
    Change your Apple ID - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • HT202213 I have 3 users on one computer with 3 unique user accounts.  Each have unique ITunes accounts.  How do we share our music libraries using home sharing?

    I have 3 users on one computer with 3 unique user accounts.  Each of us have separate and unique ITunes accounts.  How do we share our music libraries using Home Sharing?  Everything that I can find talks about sharing between networked computers, but this is all on the same computer.  I just want to share between ITunes accounts.  Thanks!

    Hi b noir, I also have two users on one pc with two different iTunes libraries.  But I also want to put them onto an external hard drive so that I can free up some memory on the pc.  So I figure I need to consolidate the two users iTunes libraries first before moving to hard drive?  But not quite sure how to do that on the iTunes 11?  Thanking you in advance!!

  • TS1363 I was upgrading iPhone OS from 5.1 to 5.1.1 on Win 7 using iTunes 10.6.1.7.  The iPhone hung.  It is no longer visible by iTunes on Win 7

    While upgrading iPhone OS from 5.1 to 5.1.1 on Win 7 using iTunes 10.6.1.7, the iPhone hung.  I could not get iTunes to find it and Win 7 does not see it.
    When I connect the iPhone to the USB, Win 7 issues the welcome sound, but that is it.  The same happens when I disconnect iPhone.
    The Devise Manager has the Apple Mobile Device USB Driver correct without any problem.  I updated this driver called usbaapl64.
    The iPhone is still hung.
    I restarted the iPod service
    I restarted the Apple Mobile Device Service
    I tried to empty and delete the temp directory in C:\users\myname\AppData\Local\ but could not
    The iTunes I am using is the latest version
    I updated the Apple Mobile Device Driver as stated above correctly
    The iPhone is still hung and is not recognized by Win 7 or iTunes, so I cannot restore the OS to the previous working version
    What else can I do to restore the previous working OS on my iPhone 4

    I was connecting the iPhone 4 to a USB 3.0 port.  I was told by Apple Express Support (at US$29.99) not to use USB 3.0 and to use USB 2.1 instead.
    If you are connecting your iPhone to the computer using a USB 3.0 port, disconnect it immediately.  iPhones will lock up if you try to update while  using a connection through a USB 3.0 port.
    Disconnect the iPhone from the computer
    Go to Device Manager and find the connected USB port.  Click the mouse right button and update the driver
    Shut the iPhone by pressing the sleep button and the home button concurrently for some time
    Move the USB cable to a USB 2.1 port or older without the iPhone.  
    Restart iTunes.
    Connect the iPhone
    Your computer should recognize the phone and reloads the correct USB 2.1 driver (Apple Mobile Device)
    Then iTunes should recognize the iPhone and starts reloading the firmware.
    When that is complete it may ask if you wish to restore, naturally you say YES
    iTunes will restore the iOS
    Using iTunes, restore the latest backup to get your data back.
    When all of the above is completed.  Start enjoying your iPhone.
    If the above does not work.  Throw your iPhone out of the window and get a replacement Android phone.

  • How to call an ebs  web service using the soa gateway

    Hi All,
    I installed Oracle E-Business Suite Release 12.1.1 Media Pack v4 (32bit) and now I wanna use the soa gateway to develop and integration and consume web services. I found the soa gateway/irep and I can browse through the existing services. But how can I call one e. g. using .NET?
    For .NET, I need an valid address (URL) to the services. How can I get such an URL.
    Example:
    I opened the integration repository, browsed to:
    Order Management Suite - Order Management - Sales Order - INBOUND: Change Purchase Order XML Transaction.
    I cannot find an address at this page which can be used in MS Dev Studio to call the service.
    If I click on "Generate WSDL" or try to open the WSDL under the "Web Service - Web Service Provider" section, I get an error message:
    Error
    SOA Provider Access resulted in exception 'oracle.apps.fnd.soa.util.SOAException: SystemError: Error while sending message to server. Server returned HTTP response code: 500 for URL: http://ebs1.tesis.de:8000/webservices/SOAProvider/EbizAuth?Generate=4283&soa_ticket=HKGsq9YYnoswMKFsHijTPQ..' when attempting to perform 'GENERATE'. Please contact your System Administrator
    What exactly does this error mean?
    Many thanks,
    Konrad

    You have to make sure every step in MOS Document ID 726414.1 that is applicable to your E-Business Suite 12.1.x release is performed. Enabling ASADMIN is just one of the steps. In spite of following all the steps in this Document you continue to get the error when clicking "Generate WSDL", please log a Service Request with Oracle Support.I will check all steps again. Maybe I missed one... Thanks!

  • FAQ: Revel Transition basics: How does this affect the way I use my Adobe software?

    Q: How will this change the way I use my Elements software?
    A: Once you have migrated your files from Photoshop.com to Revel, it will be no longer be possible to sync your photo and video files between your Photoshop Elements Organizer and Photoshop.com.
    If you're using Photoshop Elements 11, you can share your JPEGs from the Elements Organizer to AdobeRevel.com.
    If you’re using Photoshop Elements 10 or earlier version, you won’t be able to directly import from Revel or export to Revel.
    Q: How will this change the way I use Photoshop.com?
    A: Photoshop.com accounts will be remain accessible until the end of the transition period CLICK HERE to see dates and details, but once we begin moving your photos to Revel you will no longer be able to upload photos to your Photoshop.com account.
    After the transition period CLICK HERE to see dates and details, all Photoshop.com accounts will be closed. The Photoshop.com website will remain live and continue to offer product information, trial software downloads, photo editing functionality, customer spotlights, tutorials, and other resources.

    very_nice wrote:
    The suggested advice in this support article http://support.apple.com/kb/HT1478 wasn't a help at all, because the option "enable disc use" in the summary window of itunes doesn't appear.
    *From the article*:
    Products Affected
    iTunes 7 for Mac, iTunes 7 for Windows, iPod nano, iPod shuffle, iPod mini, iPod, iTunes 8 for >Windows, iTunes 8 for Mac
    No mention of the Touch, it works differently from other iPods and has no "disk mode" as such.
    I think it can be used as a storage device by using a 3rd party App, search the the App Store for such items.
    Photos transferred to your Touch via iTunes will be of severely compromised quality i.e 640x480 pixel resolution and file size around 600-700 kb. These can be retrieved, again using a 3rd party application on your computer, such as [Touch Copy|http://www.wideanglesoftware.com/touchcopy> but you will not get back original quality images.
    Good luck,
    Dud.

Maybe you are looking for

  • Creating parameter based on Submit Date from Remedy ITSM

    I am new to creating Crystal Reports and I am using Crystal Reports XI. I am pulling information from BMC Remedy ITSM through an ODBC connection. I have created a report from HPD_Help_Desk that pulls the Incident Number, Submit Date, Submitter, Owner

  • Strange behavior of entourage with shared IMAP folders

    Hi the list, I have a strange behavior with entourage 11.2.5 with shared IMAP folders. Here's what I'd like to do : All this has to do with spamassassin and spamtrainer. Some of our mails accounts are IMAP ones, but most are POP only and I don't want

  • Can Workflow Builder model my workflow in this situation?

    I have several Java applications deployed on Tomcat that I want to tie together and pass information between based on various business processes. Is it possible to kick off the individual applications with Workflow Builder or is this something that i

  • New version of Firefox freeze everytime I right-click on a link

    New version of Firefox freeze when i right click on a link. I tried reinstalling but the problem remains...

  • I can not install apps

    I can't install any app in my iPad. When I touch the install button for some app in the AppStore, the new icon appears in the home screen, but the progress bar does not progress and it says Waiting. When I sync my iPad with iTunes in my laptop, I can