Liking cljdoc? Tell your friends :D

javax.crypto.spec.DHPublicKeySpec

This class specifies a Diffie-Hellman public key with its associated parameters.

Note that this class does not perform any validation on specified parameters. Thus, the specified values are returned directly even if they are null.

This class specifies a Diffie-Hellman public key with its associated
parameters.

Note that this class does not perform any validation on specified
parameters. Thus, the specified values are returned directly even
if they are null.
raw docstring

->dh-public-key-specclj

(->dh-public-key-spec y p g)

Constructor.

Constructor that takes a public value y, a prime modulus p, and a base generator g.

y - public value y - java.math.BigInteger p - prime modulus p - java.math.BigInteger g - base generator g - java.math.BigInteger

Constructor.

Constructor that takes a public value y, a prime
 modulus p, and a base generator g.

y - public value y - `java.math.BigInteger`
p - prime modulus p - `java.math.BigInteger`
g - base generator g - `java.math.BigInteger`
raw docstring

get-gclj

(get-g this)

Returns the base generator g.

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

Returns the base generator g.

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

get-pclj

(get-p this)

Returns the prime modulus p.

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

Returns the prime modulus p.

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

get-yclj

(get-y this)

Returns the public value y.

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

Returns the public value y.

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

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

× close