Search Result

Collapse
3 results in 0.0039 seconds.
Keywords
Members
Tags
decryption
  •  

  • Decryption with multiple keys gives error: "Unable to retrieve the decryption key."

    I want to Encrypt and Decrypt different elements of xml file with different RSACryptoServic eProvider keys
    Code:
    RSACryptoServiceProvider rsaKey = new RSACryptoServiceProvider(cspParams); 
    string publicKey = rsaKey.ToXmlString(false);
    RSACryptoServiceProvider rsaKey2 = new RSACryptoServiceProvider(cspParams2);
    string publicKey2 = rsaKey2.ToXmlString(false);
    Here is my data file I want to encrypt:
    Code:
    <?xml
    ...
    See more | Go to post

  • boyindie86
    started a topic RSA Software protection
    in .NET

    RSA Software protection

    I am trying to write a protection procedure, which will allow me to create a licence key for our users. This licence key will ensure that the software can only run on the registered system, and will allow the user to access only specific areas of my program which is relevant to them.

    I am thinking of using an RSA style approach to this where I want to be the only person who can create the registration keys. But I want to allow the program...
    See more | Go to post

  • barks33
    started a topic Ceasar Cipher help

    Ceasar Cipher help

    Hi all, im writing a caesar cipher and ive done most of the program (see below)
    Code:
    def decrypt(ciphertext, shift):
        decrytped_text = " "
    
    
        for letter in ciphertext:
            if letter.isalpha():
                num = ord(letter)
                num += key
    
                if letter.isupper():
                    if num > ord('Z'):
                        num -= 26
    ...
    See more | Go to post
    Last edited by bvdet; Apr 7 '10, 06:01 AM. Reason: Add code tags
Working...