12 writes to Parameters
System.Security.Cryptography.Pkcs (12)
Internal\Cryptography\Pal\AnyOS\ManagedPal.Encrypt.cs (1)
73Parameters = parameterBytes,
Internal\Cryptography\Pal\AnyOS\ManagedPal.KeyTrans.cs (5)
145ktri.KeyEncryptionAlgorithm.Parameters = s_rsaPkcsParameters; 150ktri.KeyEncryptionAlgorithm.Parameters = s_rsaOaepSha1Parameters; 155ktri.KeyEncryptionAlgorithm.Parameters = s_rsaOaepSha256Parameters; 160ktri.KeyEncryptionAlgorithm.Parameters = s_rsaOaepSha384Parameters; 165ktri.KeyEncryptionAlgorithm.Parameters = s_rsaOaepSha512Parameters;
Internal\Cryptography\Pal\Windows\DecryptorPalWindows.Decode.cs (1)
60contentEncryptionAlgorithmAsn.Parameters = (*pCryptAlgorithmIdentifier).Parameters.ToByteArray();
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Asn1\AlgorithmIdentifierAsn.xml.cs (1)
101decoded.Parameters = rebindSpan.Overlaps(tmpSpan, out offset) ? rebind.Slice(offset, tmpSpan.Length) : tmpSpan.ToArray();
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs8PrivateKeyInfo.cs (1)
248info.PrivateKeyAlgorithm.Parameters = AlgorithmParameters;
System\Security\Cryptography\Pkcs\CmsSigner.cs (1)
437newSignerInfo.SignatureAlgorithm.Parameters = signatureParameters;
System\Security\Cryptography\Pkcs\Rfc3161TimestampRequest.cs (1)
304Parameters = AlgorithmIdentifierAsn.ExplicitDerNull,
System\Security\Cryptography\Pkcs\Rfc3161TimestampTokenInfo.cs (1)
339Parameters = AlgorithmIdentifierAsn.ExplicitDerNull,
25 references to Parameters
System.Security.Cryptography.Pkcs (25)
Internal\Cryptography\Pal\AnyOS\AsnHelpers.cs (6)
63if (asn.Parameters == null) 70asn.Parameters.Value, 93if (asn.Parameters == null) 103AsnReader reader = new AsnReader(asn.Parameters.Value, AsnEncodingRules.BER); 141Debug.Assert(asn.Parameters != null); 142parameters = asn.Parameters.Value.ToArray();
Internal\Cryptography\Pal\AnyOS\ManagedPal.cs (4)
102if (contentEncryptionAlgorithm.Parameters == null) 109contentEncryptionAlgorithm.Parameters.Value, 117if (contentEncryptionAlgorithm.Parameters == null) 125ValueAsnReader reader = new(contentEncryptionAlgorithm.Parameters.Value.Span, AsnEncodingRules.BER);
Internal\Cryptography\Pal\AnyOS\ManagedPal.KeyTrans.cs (1)
38ReadOnlyMemory<byte>? parameters = _asn.KeyEncryptionAlgorithm.Parameters;
Internal\Cryptography\PkcsHelpers.cs (4)
356oaepParameters.MaskGenFunc.Parameters == null || 364AlgorithmIdentifierAsn mgf1AlgorithmIdentifier = AlgorithmIdentifierAsn.Decode(oaepParameters.MaskGenFunc.Parameters.Value, AsnEncodingRules.DER); 374if (oaepParameters.PSourceFunc.Parameters != null && 375!oaepParameters.PSourceFunc.Parameters.Value.Span.SequenceEqual(pSpecifiedDefaultParameters))
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Asn1\AlgorithmIdentifierAsn.manual.cs (6)
19bool isNull = RepresentsNull(Parameters); 20bool isOtherNull = RepresentsNull(other.Parameters); 32return Parameters!.Value.Span.SequenceEqual(other.Parameters!.Value.Span); 37return RepresentsNull(Parameters); 67if (Parameters is ReadOnlyMemory<byte> parameters)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Asn1\AlgorithmIdentifierAsn.xml.cs (2)
35if (Parameters.HasValue) 39writer.WriteEncodedValue(Parameters.Value.Span);
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs8PrivateKeyInfo.cs (1)
85privateKeyInfo.PrivateKeyAlgorithm.Parameters,
System\Security\Cryptography\Pkcs\SignerInfo.cs (1)
45_signatureAlgorithmParameters = parsedData.SignatureAlgorithm.Parameters;