Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
BrainpoolP192.cs
1using System.Globalization;
2using System.Numerics;
3
5{
11 {
12 private static readonly BigInteger p0 = BigInteger.Parse("0C302F41D932A36CDA7A3463093D18DB78FCE476DE1A86297", NumberStyles.HexNumber);
13 private static readonly BigInteger a = BigInteger.Parse("06A91174076B1E0E19C39C031FE8685C1CAE040E5C69A28EF", NumberStyles.HexNumber);
14 private static readonly BigInteger b = BigInteger.Parse("0469A28EF7C28CCA3DC721D044F4496BCCA7EF4146FBF25C9", NumberStyles.HexNumber);
15 private static readonly BigInteger x = BigInteger.Parse("0C0A0647EAAB6A48753B033C56CB0F0900A2F5C4853375FD6", NumberStyles.HexNumber);
16 private static readonly BigInteger y = BigInteger.Parse("014B690866ABD5BB88B5F4828C1490002E6773FA2FA299B8F", NumberStyles.HexNumber);
17 private static readonly BigInteger q = BigInteger.Parse("0C302F41D932A36CDA7A3462F9E9E916B5BE8F1029AC4ACC1", NumberStyles.HexNumber);
18
24 : base(p0, new PointOnCurve(x, y), a, b, q)
25 {
26 }
27
33 public BrainpoolP192(byte[] Secret)
34 : base(p0, new PointOnCurve(x, y), a, b, q, Secret)
35 {
36 }
37
43 public BrainpoolP192(uint[] Secret)
44 : base(p0, new PointOnCurve(x, y), a, b, q, Secret)
45 {
46 }
47
51 public override string CurveName => "Brainpool P-192";
52
53 }
54}
Brainpool P-192 Elliptic Curve, as defined in RFC5639: https://datatracker.ietf.org/doc/html/rfc5639
BrainpoolP192()
Brainpool P-192 Elliptic Curve, as defined in RFC5639: https://datatracker.ietf.org/doc/html/rfc5639
BrainpoolP192(byte[] Secret)
Brainpool P-192 Elliptic Curve, as defined in RFC5639: https://datatracker.ietf.org/doc/html/rfc5639
override string CurveName
Name of curve.
BrainpoolP192(uint[] Secret)
Brainpool P-192 Elliptic Curve, as defined in RFC5639: https://datatracker.ietf.org/doc/html/rfc5639
Base class of Elliptic curves over a prime field defined by Brainpool.
Represents a point on a curve.
Definition: PointOnCurve.cs:10