Liking cljdoc? Tell your friends :D

jdk.security.spec.ECParameterSpec

This immutable class specifies the set of domain parameters used with elliptic curve cryptography (ECC).

This immutable class specifies the set of domain parameters
used with elliptic curve cryptography (ECC).
raw docstring

->ec-parameter-specclj

(->ec-parameter-spec curve g n h)

Constructor.

Creates elliptic curve domain parameters based on the specified values.

curve - the elliptic curve which this parameter defines. - java.security.spec.EllipticCurve g - the generator which is also known as the base point. - java.security.spec.ECPoint n - the order of the generator g. - java.math.BigInteger h - the cofactor. - int

throws: java.lang.NullPointerException - if curve, g, or n is null.

Constructor.

Creates elliptic curve domain parameters based on the
 specified values.

curve - the elliptic curve which this parameter defines. - `java.security.spec.EllipticCurve`
g - the generator which is also known as the base point. - `java.security.spec.ECPoint`
n - the order of the generator g. - `java.math.BigInteger`
h - the cofactor. - `int`

throws: java.lang.NullPointerException - if curve, g, or n is null.
raw docstring

get-cofactorclj

(get-cofactor this)

Returns the cofactor.

returns: the cofactor. - int

Returns the cofactor.

returns: the cofactor. - `int`
raw docstring

get-curveclj

(get-curve this)

Returns the elliptic curve that this parameter defines.

returns: the elliptic curve that this parameter defines. - java.security.spec.EllipticCurve

Returns the elliptic curve that this parameter defines.

returns: the elliptic curve that this parameter defines. - `java.security.spec.EllipticCurve`
raw docstring

get-generatorclj

(get-generator this)

Returns the generator which is also known as the base point.

returns: the generator which is also known as the base point. - java.security.spec.ECPoint

Returns the generator which is also known as the base point.

returns: the generator which is also known as the base point. - `java.security.spec.ECPoint`
raw docstring

get-orderclj

(get-order this)

Returns the order of the generator.

returns: the order of the generator. - java.math.BigInteger

Returns the order of the generator.

returns: the order of the generator. - `java.math.BigInteger`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close