64 references to AlgorithmIdentifierAsn
System.Security.Cryptography.Pkcs (64)
Internal\Cryptography\Pal\AnyOS\AsnHelpers.cs (1)
54internal static AlgorithmIdentifier ToPresentationObject(this AlgorithmIdentifierAsn asn)
Internal\Cryptography\Pal\AnyOS\ManagedPal.cs (1)
96private static SymmetricAlgorithm OpenAlgorithm(AlgorithmIdentifierAsn contentEncryptionAlgorithm)
Internal\Cryptography\Pal\AnyOS\ManagedPal.Decrypt.cs (2)
96AlgorithmIdentifierAsn contentEncryptionAlgorithm, 145AlgorithmIdentifierAsn contentEncryptionAlgorithm,
Internal\Cryptography\Pal\Windows\DecryptorPalWindows.cs (2)
15AlgorithmIdentifierAsn contentEncryptionAlgorithm) 32private AlgorithmIdentifierAsn _contentEncryptionAlgorithm;
Internal\Cryptography\Pal\Windows\DecryptorPalWindows.Decode.cs (1)
52AlgorithmIdentifierAsn contentEncryptionAlgorithmAsn;
Internal\Cryptography\PkcsHelpers.cs (2)
364AlgorithmIdentifierAsn mgf1AlgorithmIdentifier = AlgorithmIdentifierAsn.Decode(oaepParameters.MaskGenFunc.Parameters.Value, AsnEncodingRules.DER);
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Asn1\AlgorithmIdentifierAsn.manual.cs (1)
12internal bool Equals(ref AlgorithmIdentifierAsn other)
src\runtime\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 ValueAsnReader reader, ReadOnlyMemory<byte> rebind, out AlgorithmIdentifierAsn decoded) 76internal static void Decode(ref ValueAsnReader reader, Asn1Tag expectedTag, ReadOnlyMemory<byte> rebind, out AlgorithmIdentifierAsn decoded) 88private static void DecodeCore(ref ValueAsnReader reader, Asn1Tag expectedTag, ReadOnlyMemory<byte> rebind, out AlgorithmIdentifierAsn decoded)
src\runtime\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\runtime\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\runtime\src\libraries\Common\src\System\Security\Cryptography\Asn1\OaepParamsAsn.xml.cs (9)
44internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn HashFunc; 45internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn MaskGenFunc; 46internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn PSourceFunc; 151System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref explicitReader, rebind, out decoded.HashFunc); 157System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref defaultReader, rebind, out decoded.HashFunc); 164System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref explicitReader, rebind, out decoded.MaskGenFunc); 170System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref defaultReader, rebind, out decoded.MaskGenFunc); 177System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref explicitReader, rebind, out decoded.PSourceFunc); 183System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref defaultReader, rebind, out decoded.PSourceFunc);
src\runtime\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\runtime\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\runtime\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\runtime\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\runtime\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\runtime\src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (1)
80in AlgorithmIdentifierAsn algorithmIdentifier,
System\Security\Cryptography\Pkcs\Asn1\EssCertIdV2.xml.cs (3)
32internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn HashAlgorithm; 117System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.HashAlgorithm); 122System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref defaultReader, rebind, out decoded.HashAlgorithm);
System\Security\Cryptography\Pkcs\Asn1\KeyAgreeRecipientInfoAsn.xml.cs (2)
18internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn KeyEncryptionAlgorithm; 130System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.KeyEncryptionAlgorithm);
System\Security\Cryptography\Pkcs\Asn1\KeyTransRecipientInfoAsn.xml.cs (2)
16internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn KeyEncryptionAlgorithm; 88System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.KeyEncryptionAlgorithm);
System\Security\Cryptography\Pkcs\Asn1\MessageImprint.xml.cs (2)
14internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn HashAlgorithm; 77System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.HashAlgorithm);
System\Security\Cryptography\Pkcs\Asn1\OriginatorPublicKeyAsn.xml.cs (2)
14internal System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn Algorithm; 77System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(ref sequenceReader, rebind, out decoded.Algorithm);
System\Security\Cryptography\Pkcs\Rfc3161TimestampRequest.cs (1)
304Parameters = AlgorithmIdentifierAsn.ExplicitDerNull,
System\Security\Cryptography\Pkcs\Rfc3161TimestampTokenInfo.cs (1)
339Parameters = AlgorithmIdentifierAsn.ExplicitDerNull,
System\Security\Cryptography\Pkcs\SignedCms.cs (7)
342DigestAlgorithms = Array.Empty<AlgorithmIdentifierAsn>(), 388AlgorithmIdentifierAsn signerAlgorithm = _signedData.SignerInfos[index].DigestAlgorithm; 490private void ConsiderDigestAddition(AlgorithmIdentifierAsn candidate) 496ref AlgorithmIdentifierAsn alg = ref _signedData.DigestAlgorithms[i]; 508private void ConsiderDigestRemoval(AlgorithmIdentifierAsn candidate) 514ref AlgorithmIdentifierAsn signerAlg = ref _signedData.SignerInfos[i].DigestAlgorithm; 530ref AlgorithmIdentifierAsn alg = ref _signedData.DigestAlgorithms[i];