7 instantiations of AlgorithmIdentifierAsn
System.Security.Cryptography (7)
System\Security\Cryptography\X509Certificates\CertificateRequest.cs (1)
838Algorithm = new AlgorithmIdentifierAsn
System\Security\Cryptography\X509Certificates\OpenSslX509Encoder.cs (1)
174Algorithm = new AlgorithmIdentifierAsn { Algorithm = Oids.Dsa, Parameters = encodedParameters },
System\Security\Cryptography\X509Certificates\Pkcs10CertificationRequestInfo.cs (1)
55spki.Algorithm = new AlgorithmIdentifierAsn { Algorithm = PublicKey.Oid!.Value!, Parameters = PublicKey.EncodedParameters.RawData };
System\Security\Cryptography\X509Certificates\PublicKey.cs (1)
279Algorithm = new AlgorithmIdentifierAsn
System\Security\Cryptography\X509Certificates\RSAPssX509SignatureGenerator.cs (3)
75HashAlgorithm = new AlgorithmIdentifierAsn { Algorithm = digestOid }, 76MaskGenAlgorithm = new AlgorithmIdentifierAsn { Algorithm = Oids.Mgf1 }, 93AlgorithmIdentifierAsn identifier = new AlgorithmIdentifierAsn
84 references to AlgorithmIdentifierAsn
System.Security.Cryptography (84)
src\libraries\Common\src\System\Security\Cryptography\Asn1\AlgorithmIdentifierAsn.manual.cs (1)
12internal bool Equals(ref AlgorithmIdentifierAsn other)
src\libraries\Common\src\System\Security\Cryptography\Asn1\AlgorithmIdentifierAsn.xml.cs (6)
50internal static AlgorithmIdentifierAsn Decode(ReadOnlyMemory<byte> encoded, AsnEncodingRules ruleSet) 55internal static AlgorithmIdentifierAsn Decode(Asn1Tag expectedTag, ReadOnlyMemory<byte> encoded, AsnEncodingRules ruleSet) 61DecodeCore(ref reader, expectedTag, encoded, out AlgorithmIdentifierAsn decoded); 71internal static void Decode(ref AsnValueReader reader, ReadOnlyMemory<byte> rebind, out AlgorithmIdentifierAsn decoded) 76internal static void Decode(ref AsnValueReader reader, Asn1Tag expectedTag, ReadOnlyMemory<byte> rebind, out AlgorithmIdentifierAsn decoded) 88private static void DecodeCore(ref AsnValueReader reader, Asn1Tag expectedTag, ReadOnlyMemory<byte> rebind, out AlgorithmIdentifierAsn decoded)
src\libraries\Common\src\System\Security\Cryptography\Asn1\DigestInfoAsn.xml.cs (2)
14internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn DigestAlgorithm; 77System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.DigestAlgorithm);
src\libraries\Common\src\System\Security\Cryptography\Asn1\EncryptedPrivateKeyInfoAsn.xml.cs (2)
14internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn EncryptionAlgorithm; 77System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.EncryptionAlgorithm);
src\libraries\Common\src\System\Security\Cryptography\Asn1\PBES2Params.xml.cs (4)
14internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn KeyDerivationFunc; 15internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn EncryptionScheme; 74System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.KeyDerivationFunc); 75System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.EncryptionScheme);
src\libraries\Common\src\System\Security\Cryptography\Asn1\Pbkdf2Params.xml.cs (4)
19internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn Prf; 29System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref reader, rebind, out decoded.Prf); 135System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.Prf); 140System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref defaultReader, rebind, out decoded.Prf);
src\libraries\Common\src\System\Security\Cryptography\Asn1\Pbkdf2SaltChoice.xml.cs (3)
15internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn? OtherSource; 115System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn tmpOtherSource; 116System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref reader, rebind, out tmpOtherSource);
src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs7\EncryptedContentInfoAsn.xml.cs (2)
15internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn ContentEncryptionAlgorithm; 92System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.ContentEncryptionAlgorithm);
src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs7\SignedDataAsn.xml.cs (4)
16internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn[] DigestAlgorithms; 142var tmpList = new List<System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn>(); 143System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn tmpItem; 147System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref collectionReader, rebind, out tmpItem);
src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs7\SignerInfoAsn.xml.cs (4)
17internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn DigestAlgorithm; 19internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn SignatureAlgorithm; 129System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.DigestAlgorithm); 137System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.SignatureAlgorithm);
src\libraries\Common\src\System\Security\Cryptography\Asn1\PrivateKeyInfoAsn.xml.cs (2)
16internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn PrivateKeyAlgorithm; 101System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.PrivateKeyAlgorithm);
src\libraries\Common\src\System\Security\Cryptography\Asn1\PssParamsAsn.manual.cs (2)
31AlgorithmIdentifierAsn mgfParams = AlgorithmIdentifierAsn.Decode(
src\libraries\Common\src\System\Security\Cryptography\Asn1\PssParamsAsn.xml.cs (8)
22internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn HashAlgorithm; 23internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn MaskGenAlgorithm; 35System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref reader, rebind, out decoded.HashAlgorithm); 39System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref reader, rebind, out decoded.MaskGenAlgorithm); 181System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref explicitReader, rebind, out decoded.HashAlgorithm); 187System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref defaultReader, rebind, out decoded.HashAlgorithm); 194System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref explicitReader, rebind, out decoded.MaskGenAlgorithm); 200System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref defaultReader, rebind, out decoded.MaskGenAlgorithm);
src\libraries\Common\src\System\Security\Cryptography\Asn1\SubjectPublicKeyInfoAsn.xml.cs (2)
14internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn Algorithm; 77System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.Algorithm);
src\libraries\Common\src\System\Security\Cryptography\DSAKeyFormatHelper.cs (2)
20in AlgorithmIdentifierAsn algId, 86in AlgorithmIdentifierAsn algId,
src\libraries\Common\src\System\Security\Cryptography\EccKeyFormatHelper.cs (5)
93AlgorithmIdentifierAsn algId = default; 108in AlgorithmIdentifierAsn algId, 117in AlgorithmIdentifierAsn algId, 185in AlgorithmIdentifierAsn algId, 232private static void ValidateParameters(ECDomainParameters? keyParameters, in AlgorithmIdentifierAsn algId)
src\libraries\Common\src\System\Security\Cryptography\KeyFormatHelper.cs (1)
14internal delegate void KeyReader<TRet>(ReadOnlyMemory<byte> key, in AlgorithmIdentifierAsn algId, out TRet ret);
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (3)
69in AlgorithmIdentifierAsn algorithmIdentifier, 565AlgorithmIdentifierAsn encryptionScheme, 856AlgorithmIdentifierAsn algorithmIdentifier,
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (2)
20in AlgorithmIdentifierAsn algId, 60in AlgorithmIdentifierAsn algId,
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (1)
427AlgorithmIdentifierAsn algId = default;
src\libraries\Common\src\System\Security\Cryptography\X509Certificates\X509CertificateLoader.Pkcs12.cs (3)
506private static int GetKdfCount(in AlgorithmIdentifierAsn algorithmIdentifier) 517static int GetRawKdfCount(in AlgorithmIdentifierAsn algorithmIdentifier) 669in AlgorithmIdentifierAsn algorithmIdentifier,
System\Security\Cryptography\RSA.cs (2)
906AlgorithmIdentifierAsn ignored = default; 939AlgorithmIdentifierAsn ignored = default;
System\Security\Cryptography\X509Certificates\Asn1\CertificateAsn.xml.cs (2)
15internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn SignatureAlgorithm; 80System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.SignatureAlgorithm);
System\Security\Cryptography\X509Certificates\Asn1\CertificationRequestAsn.xml.cs (2)
15internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn SignatureAlgorithm; 80System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.SignatureAlgorithm);
System\Security\Cryptography\X509Certificates\Asn1\TbsCertificateAsn.xml.cs (2)
19internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn SignatureAlgorithm; 211System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.SignatureAlgorithm);
System\Security\Cryptography\X509Certificates\CertificateRequest.cs (2)
819AlgorithmIdentifierAsn signatureAlgorithmAsn; 822signatureAlgorithmAsn = AlgorithmIdentifierAsn.Decode(signatureAlgorithm, AsnEncodingRules.DER);
System\Security\Cryptography\X509Certificates\CertificateRequest.Load.cs (3)
154AlgorithmIdentifierAsn algorithmIdentifier; 159AlgorithmIdentifierAsn.Decode(ref pkcs10Asn, rebind, out algorithmIdentifier); 293AlgorithmIdentifierAsn algorithmIdentifier)
System\Security\Cryptography\X509Certificates\CertificateRevocationListBuilder.Build.cs (2)
333AlgorithmIdentifierAsn signatureAlgorithmAsn; 337signatureAlgorithmAsn = AlgorithmIdentifierAsn.Decode(signatureAlgId, AsnEncodingRules.DER);
System\Security\Cryptography\X509Certificates\CertificateRevocationListBuilder.Load.cs (2)
99AlgorithmIdentifierAsn.Decode(ref certificateList, ReadOnlyMemory<byte>.Empty, out _); 123AlgorithmIdentifierAsn.Decode(ref tbsCertList, ReadOnlyMemory<byte>.Empty, out _);
System\Security\Cryptography\X509Certificates\Pkcs10CertificationRequestInfo.cs (2)
45AlgorithmIdentifierAsn signatureAlgorithmAsn; 48signatureAlgorithmAsn = AlgorithmIdentifierAsn.Decode(signatureAlgorithm, AsnEncodingRules.DER);
System\Security\Cryptography\X509Certificates\RSAPssX509SignatureGenerator.cs (1)
93AlgorithmIdentifierAsn identifier = new AlgorithmIdentifierAsn
System\Security\Cryptography\X509Certificates\X509CertificateLoader.Unix.cs (1)
484AlgorithmIdentifierAsn.RepresentsNull(certKeyParameters);