protected internal IAsymmetricBlockCipher GetEngine()
 {
     return(RsaCrypto.GetRsaEngine(UsePkcsPadding.Value));
 }
Example #2
0
 protected internal string DecryptWithPrivateKey(string cipher, bool usePkcsPadding)
 {
     return(DecryptWithPrivateKey(cipher, RsaCrypto.GetRsaEngine(usePkcsPadding)));
 }