2 writes to A
System.Security.Cryptography (2)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\ECCng.ImportExport.cs (1)
201primeCurve.A = Interop.BCrypt.Consume(ecBlob, ref offset, pBcryptBlob->cbFieldLength);
System\Security\Cryptography\EccKeyFormatHelper.cs (1)
417curve.A = specifiedParameters.Curve.A.ToUnsignedIntegerBytes(primeOrPoly.Length);
14 references to A
System.Security.Cryptography (14)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\ECCng.ImportExport.cs (5)
60curve.A!.Length + 94Interop.BCrypt.Emit(blob, ref offset, curve.A); 245curve.A!.Length + 260pBcryptBlob->cbFieldLength = curve.A.Length; // P, A, B, X, Y have the same length 269Interop.BCrypt.Emit(blob, ref offset, curve.A);
System\Security\Cryptography\EccKeyFormatHelper.cs (1)
721WriteFieldElement(curve.A!, writer);
System\Security\Cryptography\ECCurve.cs (6)
202if (A == null || 203B == null || B.Length != A.Length || 204G.X == null || G.X.Length != A.Length || 205G.Y == null || G.Y.Length != A.Length || 216if (Prime == null || Prime.Length != A!.Length) 252return (A != null ||
System\Security\Cryptography\Helpers.cs (2)
232!aCurve.A.ContentsEqual(bCurve.A) ||