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