8 writes to Y
System.Security.Cryptography (7)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.Dsa.cs (1)
130
Y
= Crypto.ExtractBignum(y_bn, pgy_cb)!,
src\libraries\Common\src\System\Security\Cryptography\DSAKeyFormatHelper.cs (2)
81
ret.
Y
= y.ExportKeyParameter(ret.P.Length);
140
ret.
Y
= y.ExportKeyParameter(ret.P.Length);
System\Security\Cryptography\CapiHelper.DSA.Shared.cs (3)
201
dsaParameters.
Y
= br.ReadReversed(lenP);
235
dsaParameters.
Y
= br.ReadReversed(len);
256
dsaParameters.
Y
= brPublicBlob.ReadReversed(len);
System\Security\Cryptography\DSA.Xml.cs (1)
54
Y
= y,
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\DSAKeyValue.cs (1)
203
Y
= Convert.FromBase64String(yNode.InnerText),
21 references to Y
System.Security.Cryptography (20)
src\libraries\Common\src\System\Security\Cryptography\DSAKeyFormatHelper.cs (1)
234
WriteKeyComponent(writer, dsaParameters.
Y
, bitString: true);
src\libraries\Common\src\System\Security\Cryptography\DSAOpenSsl.cs (4)
101
if (parameters.P == null || parameters.Q == null || parameters.G == null || parameters.
Y
== null)
112
if (parameters.G.Length != keySize || parameters.
Y
.Length != keySize)
126
parameters.
Y
, parameters.
Y
.Length,
System\Security\Cryptography\CapiHelper.DSA.Shared.cs (8)
38
if (dsaParameters.
Y
!= null && dsaParameters.
Y
.Length != dsaParameters.P.Length)
100
bw.WriteReversed(dsaParameters.
Y
!);
132
Debug.Assert(dsaParameters.
Y
!= null);
133
bw.WriteReversed(dsaParameters.
Y
);
296
if (((dsaParameters.
Y
!= null) && isPrivate) ||
297
((dsaParameters.
Y
!= null) && (dsaParameters.J != null)))
299
Debug.Assert(dsaParameters.
Y
.Length > 0);
System\Security\Cryptography\DSA.Xml.cs (3)
37
byte[] y = ReadRequiredElement(ref state, nameof(DSAParameters.
Y
), p.Length);
112
XmlKeyHelper.WriteCryptoBinary(nameof(DSAParameters.
Y
), keyParameters.
Y
, builder);
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (2)
134
if (parameters.
Y
!= null && parameters.
Y
.Length > 1024 / 8)
System\Security\Cryptography\X509Certificates\DSACertificateExtensions.cs (2)
52
!currentParameters.
Y
.ContentsEqual(newParameters.
Y
))
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\DSAKeyValue.cs (1)
112
yElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(dsaParams.
Y
!)));