Uses of Class
org.bouncycastle.crypto.CryptoServicesRegistrar.Property
Packages that use CryptoServicesRegistrar.Property
Package
Description
Lower level cryptography API that supports the JCA/JCE provider as well as allowing access to more primitive functionality.
-
Uses of CryptoServicesRegistrar.Property in org.bouncycastle.crypto
Fields in org.bouncycastle.crypto declared as CryptoServicesRegistrar.PropertyModifier and TypeFieldDescriptionstatic final CryptoServicesRegistrar.Property
CryptoServicesRegistrar.Property.DH_DEFAULT_PARAMS
The default parameters for a particular size of Diffie-Hellman key.This is a sized property.static final CryptoServicesRegistrar.Property
CryptoServicesRegistrar.Property.DSA_DEFAULT_PARAMS
The default parameters for a particular size of DSA key.static final CryptoServicesRegistrar.Property
CryptoServicesRegistrar.Property.EC_IMPLICITLY_CA
The parameters to be used for processing implicitlyCA X9.62 parametersMethods in org.bouncycastle.crypto with parameters of type CryptoServicesRegistrar.PropertyModifier and TypeMethodDescriptionstatic <T> T[]
CryptoServicesRegistrar.clearGlobalProperty
(CryptoServicesRegistrar.Property property) Clear the global value for the passed in property.static <T> T[]
CryptoServicesRegistrar.clearThreadProperty
(CryptoServicesRegistrar.Property property) Clear the thread local value for the passed in property.static <T> T
CryptoServicesRegistrar.getProperty
(CryptoServicesRegistrar.Property property) Return the default value for a particular property if one exists.static <T> T[]
CryptoServicesRegistrar.getSizedProperty
(CryptoServicesRegistrar.Property property) Return an array representing the current values for a sized property such as DH_DEFAULT_PARAMS or DSA_DEFAULT_PARAMS.static <T> T
CryptoServicesRegistrar.getSizedProperty
(CryptoServicesRegistrar.Property property, int size) Return the value for a specific size for a sized property such as DH_DEFAULT_PARAMS or DSA_DEFAULT_PARAMS.static <T> void
CryptoServicesRegistrar.setGlobalProperty
(CryptoServicesRegistrar.Property property, T... propertyValue) Set the value of the the passed in property globally in the JVM.static <T> void
CryptoServicesRegistrar.setThreadProperty
(CryptoServicesRegistrar.Property property, T... propertyValue) Set the value of the the passed in property on the current thread only.