ECParameterSpec Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ECParameterSpec(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
ECParameterSpec(EllipticCurve, ECPoint, BigInteger, Int32) |
Creates elliptic curve domain parameters based on the specified values. |
ECParameterSpec(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected ECParameterSpec (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Security.Spec.ECParameterSpec : nativeint * Android.Runtime.JniHandleOwnership -> Java.Security.Spec.ECParameterSpec
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
ECParameterSpec(EllipticCurve, ECPoint, BigInteger, Int32)
Creates elliptic curve domain parameters based on the specified values.
[Android.Runtime.Register(".ctor", "(Ljava/security/spec/EllipticCurve;Ljava/security/spec/ECPoint;Ljava/math/BigInteger;I)V", "")]
public ECParameterSpec (Java.Security.Spec.EllipticCurve? curve, Java.Security.Spec.ECPoint? g, Java.Math.BigInteger? n, int h);
[<Android.Runtime.Register(".ctor", "(Ljava/security/spec/EllipticCurve;Ljava/security/spec/ECPoint;Ljava/math/BigInteger;I)V", "")>]
new Java.Security.Spec.ECParameterSpec : Java.Security.Spec.EllipticCurve * Java.Security.Spec.ECPoint * Java.Math.BigInteger * int -> Java.Security.Spec.ECParameterSpec
Parameters
- curve
- EllipticCurve
the elliptic curve which this parameter defines.
- g
- ECPoint
the generator which is also known as the base point.
the order of the generator g
.
- h
- Int32
the cofactor.
- Attributes
Exceptions
if order <= zero
or cofactor <= zero
.
Remarks
Creates elliptic curve domain parameters based on the specified values.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.