Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SecP521r1.cs
2
4{
8 public class SecP521r1 : NamedCurve
9 {
13 public override string Oid => "1.3.132.0.35";
14
19 public override EllipticCurve GetCurve()
20 {
21 return new NistP521();
22 }
23 }
24}
Named elliptic curve secp521r1 / NIST P-521 / ansip521r1
Definition: SecP521r1.cs:9
override string Oid
OID identifying the type of object.
Definition: SecP521r1.cs:13
override EllipticCurve GetCurve()
Gets the Elliptic Curve associated with the named curve.
Definition: SecP521r1.cs:19
Abstract base class for elliptic curves.
NIST P-521 Elliptic Curve, as defined in NIST FIPS BUB 186-4: https://nvlpubs.nist....
Definition: NistP521.cs:10