9 writes to Y
System.Security.Cryptography (8)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\DSACng.ImportExport.cs (2)
366dsaParams.Y = Interop.BCrypt.Consume(dsaBlob, ref offset, pBcryptBlob->cbKey); 401dsaParams.Y = Interop.BCrypt.Consume(dsaBlob, ref offset, pBcryptBlob->cbKey);
src\runtime\src\libraries\Common\src\System\Security\Cryptography\DSAKeyFormatHelper.cs (2)
81ret.Y = y.ExportKeyParameter(ret.P.Length); 140ret.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)
194Y = Convert.FromBase64String(yNode.InnerText),
20 references to Y
System.Security.Cryptography (19)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\DSACng.ImportExport.cs (5)
25if (parameters.P == null || parameters.Q == null || parameters.G == null || parameters.Y == null) 38if (parameters.G.Length != keySizeInBytes || parameters.Y.Length != keySizeInBytes) 219Interop.BCrypt.Emit(blob, ref offset, parameters.Y!); 247parameters.Y!.Length + 300Interop.BCrypt.Emit(blob, ref offset, parameters.Y);
src\runtime\src\libraries\Common\src\System\Security\Cryptography\DSAKeyFormatHelper.cs (1)
224WriteKeyComponent(writer, dsaParameters.Y, bitString: true);
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\X509Certificates\DSACertificateExtensions.cs (2)
52!currentParameters.Y.ContentsEqual(newParameters.Y))
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\DSAKeyValue.cs (1)
106yElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(dsaParams.Y!)));