Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8176977
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T23:23:20+00:00 2026-06-06T23:23:20+00:00

How one would encrypt a string using asymmetric encryption on WinRT Metro in C#

  • 0

How one would encrypt a string using asymmetric encryption on WinRT Metro in C# and decrypt this in classic Windows, let’s say in a webservice?

I want to use RsaPkcs1 algorithm and I can see that CryptographicKey class and RSAParameters class are not even near compatible.

How this could be accomplished?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T23:23:21+00:00Added an answer on June 6, 2026 at 11:23 pm

    I have found the solution on how to export the keys from the CryptographicKey in a format that .net 4 can successfully use.

    CryptographicKey has 2 functions 1. Export and 2. ExportPublicKey. I used the 1st function that exports the private key. This function has 2 parameters 1st is the type of export and 2nd the byte[] that will fill.

    If CryptographicPrivateKeyBlobType.Capi1PrivateKey is used, the blob that Export will produce is compatible with the WinCAPI that RSACryptoServiceProvider of .net 4 can import.

    WinRT

    String str = "String To Encrypt";
    IBuffer buf = CryptographicBuffer.ConvertStringToBinary(str,BinaryStringEncoding.Utf16BE);
    String AsymmetricAlgName = Windows.Security.Cryptography.Core.AsymmetricAlgorithmNames.RsaPkcs1;
    AsymmetricKeyAlgorithmProvider asym = AsymmetricKeyAlgorithmProvider.OpenAlgorithm(AsymmetricAlgName);
    CryptographicKey key = asym.CreateKeyPair(512);
    IBuffer enc = CryptographicEngine.Encrypt(key, buf, null);
    byte[] encryptedbyteArr;
    CryptographicBuffer.CopyToByteArray(enc, out encryptedbyteArr);
    String encryptedBase64Str = Convert.ToBase64String(encryptedbyteArr);
    
    
    //Export the private Key in WinCapi format
    
    byte[] privatekeyBytes;
    CryptographicBuffer.CopyToByteArray(key.Export(CryptographicPrivateKeyBlobType.Capi1PrivateKey), out privatekeyBytes);
    String privatekeyBase64 = Convert.ToBase64String(privatekeyBytes);
    

    encryptedBase64Str now contains the encrypted string in Base64. And lets say that encryptedBase64Str="BwIAAACkAABSU0EyAAIAAAEAAQCFrMTqMU3T14zSUM5..."

    Web Service

    RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
    String privateKey64 = "BwIAAACkAABSU0EyAAIAAAEAAQCFrMTqMU3T14zSUM5...";
    String EncryptedString = "PbauDOjqMLD2P6WSmEw==";
    byte[] EncryptedDataBlob = Convert.FromBase64String(EncryptedString);
    byte[] privateKeyBlob = Convert.FromBase64String(privateKey64);
    byte[] decryptedBytes;
    rsa.ImportCspBlob(privateKeyBlob);
    decryptedBytes = rsa.Decrypt(EncryptedDataBlob, false);
    String decryptedString =System.Text.Encoding.BigEndianUnicode.GetString(decryptedBytes);
    

    decryptedString now contains the decrypted string that WinRT had.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would have thought this one would be simple but I'm trying to change
I have no idea why any one would do this (include support for Lists
I'm confused as to when one would choose AsyncTask over a Handler. Say I
Currently i am using sql encryption and would like to continue using it through
Hello I am trying to encrypt / decrypt a string via Rijaendal. I simply
Possible Duplicate: How can I decrypt this encryption routine? I have been on this
One would expect that even though strings are immutable, value-equality and reference-equality would not
I was wondering how one would go about developing a website from scratch with
I am curious which one would be better fitting as a currency field ?
Could you provide an example of how one would represent a player class with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.