DhParameters

@Serializable
class DhParameters(val prime: BigInt, val base: BigInt, val privateValueLength: Int? = null)(source)
DHParameter ::= SEQUENCE {
prime INTEGER, -- p
base INTEGER, -- g
privateValueLength INTEGER OPTIONAL
}

As defined in PKCS#3 (RFC 2631). The privateValueLength field is optional and typically omitted.

Constructors

Link copied to clipboard
constructor(prime: BigInt, base: BigInt, privateValueLength: Int? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard