RSA Encryption C#
        Posted  
        
            by Ryan
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Ryan
        
        
        
        Published on 2010-03-14T08:29:04Z
        Indexed on 
            2010/03/14
            8:35 UTC
        
        
        Read the original article
        Hit count: 303
        
rsacryptoserviceprovider
Hi guys,
I have a class which in C# doing RSA encryption where I used the default RSACryptoServiceProvider class. But I have a concern regarding the following; If you have the word hello for an input and the encrypted string is returned as ABCDE, if you perform another encrypt operation on the input hello, using the same keys (public and private) for the RSA will the output be again ABCDE?
Thanks in advance
© Stack Overflow or respective owner