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