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