Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
NamedCurve.cs
2
4{
8 public abstract class NamedCurve : SecurityObject, INamedCurve
9 {
10 private bool configured;
11
15 public override bool IsConfigured => this.configured;
16
22 public override bool Configure(Vector SecurityInfo)
23 {
24 this.configured = true;
25 return true;
26 }
27
32 public abstract EllipticCurve GetCurve();
33 }
34}
override bool IsConfigured
If the object has been configured.
Definition: NamedCurve.cs:15
override bool Configure(Vector SecurityInfo)
If the object can be configured by the security information provided.
Definition: NamedCurve.cs:22
abstract EllipticCurve GetCurve()
Gets the Elliptic Curve associated with the named curve.
Abstract base class for security objects.
Abstract base class for elliptic curves.