RSAExtensions icon indicating copy to clipboard operation
RSAExtensions copied to clipboard

.NET Core >=3.0 & .NET Standard >=2.2, RSA Enhanced Extension. Provide XML format key import and export. Unified export and import of PKCS # 1, PKCS # 8, and XML formats. Supports PKCS # 1, PKCS # 8 P...

Results 1 RSAExtensions issues
Sort by recently updated
recently updated
newest added

The following code is incorrect ``` string publicKey = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC9t16RqQWUE/J1IyOfoNHc4r/h6RPnXcWTJ4IbhQVUsEqMMm65F0hiytAgozXmVw68yPJywbpblDrx9zl1wdRcdHCoUvmPdr9/oCQtpQyVc7BXZIN6wJlD6MTeMeni+N0toNPxfXjiAawjNHGZZuT8wQpNEMwsVyJ/lonXaVdGZwIDAQAB"; var rsa=RSA.Create(); rsa.ImportPublicKey(RSAKeyType.Pkcs1, publicKey,true); var asd=rsa.Encrypt(Encoding.UTF8.GetBytes("Hdsmzj9@2@"), RSAEncryptionPadding.OaepSHA256); var vv=Convert.ToBase64String(asd); ```