13 references to Pkcs1
System.Security.Cryptography (8)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RSACng.EncryptDecrypt.cs (2)
65
if (padding == RSAEncryptionPadding.
Pkcs1
)
147
if (padding == RSAEncryptionPadding.
Pkcs1
)
System\Security\Cryptography\RSACryptoServiceProvider.Windows.cs (4)
266
return Decrypt(rgb, fOAEP ? RSAEncryptionPadding.OaepSHA1 : RSAEncryptionPadding.
Pkcs1
);
312
return Encrypt(rgb, fOAEP ? RSAEncryptionPadding.OaepSHA1 : RSAEncryptionPadding.
Pkcs1
);
570
if (padding == RSAEncryptionPadding.
Pkcs1
)
605
if (padding == RSAEncryptionPadding.
Pkcs1
)
System\Security\Cryptography\RSAPKCS1KeyExchangeDeformatter.cs (1)
39
return _rsaKey.Decrypt(rgbIn, RSAEncryptionPadding.
Pkcs1
);
System\Security\Cryptography\RSAPKCS1KeyExchangeFormatter.cs (1)
53
return _rsaKey.Encrypt(rgbData, RSAEncryptionPadding.
Pkcs1
);
System.Security.Cryptography.Pkcs (5)
Internal\Cryptography\Pal\AnyOS\ManagedPal.KeyTrans.cs (3)
77
encryptionPadding = RSAEncryptionPadding.
Pkcs1
;
140
RSAEncryptionPadding padding = recipient.RSAEncryptionPadding ?? RSAEncryptionPadding.
Pkcs1
;
142
if (padding == RSAEncryptionPadding.
Pkcs1
)
Internal\Cryptography\Pal\Windows\PkcsPalWindows.Encrypt.cs (2)
281
padding = RSAEncryptionPadding.
Pkcs1
;
285
if (padding == RSAEncryptionPadding.
Pkcs1
)