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