Uses of Class
org.bouncycastle.crypto.asymmetric.DHValidationParameters
-
Packages that use DHValidationParameters Package Description org.bouncycastle.crypto.asymmetric Keys and parameter classes for asymmetric (public/private) key algorithms.org.bouncycastle.jcajce.spec Key and algorithm parameters specifications for supporting provider specific algorithms and modes. -
-
Uses of DHValidationParameters in org.bouncycastle.crypto.asymmetric
Methods in org.bouncycastle.crypto.asymmetric that return DHValidationParameters Modifier and Type Method Description DHValidationParameters
DHDomainParameters. getValidationParameters()
Constructors in org.bouncycastle.crypto.asymmetric with parameters of type DHValidationParameters Constructor Description DHDomainParameters(java.math.BigInteger p, java.math.BigInteger q, java.math.BigInteger g, int m, int l, java.math.BigInteger j, DHValidationParameters validation)
Base constructor - the full domain parameter set.DHDomainParameters(java.math.BigInteger p, java.math.BigInteger q, java.math.BigInteger g, int l, DHValidationParameters validation)
X9.42 parameters with private value length.DHDomainParameters(java.math.BigInteger p, java.math.BigInteger q, java.math.BigInteger g, java.math.BigInteger j, DHValidationParameters validation)
Standard constructor - the full X9.42 parameter set. -
Uses of DHValidationParameters in org.bouncycastle.jcajce.spec
Methods in org.bouncycastle.jcajce.spec that return DHValidationParameters Modifier and Type Method Description DHValidationParameters
DHDomainParameterSpec. getValidationParameters()
Return the validation parameters for the domain parameter set.Constructors in org.bouncycastle.jcajce.spec with parameters of type DHValidationParameters Constructor Description DHDomainParameterSpec(java.math.BigInteger p, java.math.BigInteger q, java.math.BigInteger g, java.math.BigInteger j, int m, int l, DHValidationParameters validationParameters)
Base constructor - the full domain parameter set.DHDomainParameterSpec(java.math.BigInteger p, java.math.BigInteger q, java.math.BigInteger g, java.math.BigInteger j, int l, DHValidationParameters validationParameters)
X9.42 parameters with private value length.
-