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