Liking cljdoc? Tell your friends :D

jdk.security.spec.DSAPublicKeySpec

This class specifies a DSA public key with its associated parameters.

This class specifies a DSA public key with its associated parameters.
raw docstring

->dsa-public-key-specclj

(->dsa-public-key-spec y p q g)

Constructor.

Creates a new DSAPublicKeySpec with the specified parameter values.

y - the public key. - java.math.BigInteger p - the prime. - java.math.BigInteger q - the sub-prime. - java.math.BigInteger g - the base. - java.math.BigInteger

Constructor.

Creates a new DSAPublicKeySpec with the specified parameter values.

y - the public key. - `java.math.BigInteger`
p - the prime. - `java.math.BigInteger`
q - the sub-prime. - `java.math.BigInteger`
g - the base. - `java.math.BigInteger`
raw docstring

get-gclj

(get-g this)

Returns the base g.

returns: the base g. - java.math.BigInteger

Returns the base g.

returns: the base g. - `java.math.BigInteger`
raw docstring

get-pclj

(get-p this)

Returns the prime p.

returns: the prime p. - java.math.BigInteger

Returns the prime p.

returns: the prime p. - `java.math.BigInteger`
raw docstring

get-qclj

(get-q this)

Returns the sub-prime q.

returns: the sub-prime q. - java.math.BigInteger

Returns the sub-prime q.

returns: the sub-prime q. - `java.math.BigInteger`
raw docstring

get-yclj

(get-y this)

Returns the public key y.

returns: the public key y. - java.math.BigInteger

Returns the public key y.

returns: the public key y. - `java.math.BigInteger`
raw docstring

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

× close