9 references to RSAPrivateKeyAsn
System.Security.Cryptography (9)
src\libraries\Common\src\System\Security\Cryptography\Asn1\RSAPrivateKeyAsn.xml.cs (6)
45internal static RSAPrivateKeyAsn Decode(ReadOnlyMemory<byte> encoded, AsnEncodingRules ruleSet) 50internal static RSAPrivateKeyAsn Decode(Asn1Tag expectedTag, ReadOnlyMemory<byte> encoded, AsnEncodingRules ruleSet) 56DecodeCore(ref reader, expectedTag, out RSAPrivateKeyAsn decoded); 66internal static void Decode(ref AsnValueReader reader, out RSAPrivateKeyAsn decoded) 71internal static void Decode(ref AsnValueReader reader, Asn1Tag expectedTag, out RSAPrivateKeyAsn decoded) 83private static void DecodeCore(ref AsnValueReader reader, Asn1Tag expectedTag, out RSAPrivateKeyAsn decoded)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (2)
23RSAPrivateKeyAsn key = RSAPrivateKeyAsn.Decode(keyData, AsnEncodingRules.BER);
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (1)
851_ = RSAPrivateKeyAsn.Decode(pkcs1Priv, AsnEncodingRules.BER);