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