10 references to RSAPrivateKeyAsn
System.Security.Cryptography (10)
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, encoded, out RSAPrivateKeyAsn decoded); 66internal static void Decode(ref AsnValueReader reader, ReadOnlyMemory<byte> rebind, out RSAPrivateKeyAsn decoded) 71internal static void Decode(ref AsnValueReader reader, Asn1Tag expectedTag, ReadOnlyMemory<byte> rebind, out RSAPrivateKeyAsn decoded) 83private static void DecodeCore(ref AsnValueReader reader, Asn1Tag expectedTag, ReadOnlyMemory<byte> rebind, out RSAPrivateKeyAsn decoded)
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.Pkcs1.cs (3)
34RSAPrivateKeyAsn key = RSAPrivateKeyAsn.Decode(keyData, AsnEncodingRules.BER); 81static TRet ExtractParametersWithCallback(RSAParametersCallback<TRet> parametersReader, ref RSAPrivateKeyAsn key, ref RSAParameters parameters)
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (1)
813_ = RSAPrivateKeyAsn.Decode(pkcs1Priv, AsnEncodingRules.BER);