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.PropertyCryptoServicesRegistrar.Property.DH_DEFAULT_PARAMSThe default parameters for a particular size of Diffie-Hellman key.This is a sized property.static final CryptoServicesRegistrar.PropertyCryptoServicesRegistrar.Property.DSA_DEFAULT_PARAMSThe default parameters for a particular size of DSA key.static final CryptoServicesRegistrar.PropertyCryptoServicesRegistrar.Property.EC_IMPLICITLY_CAThe 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> TCryptoServicesRegistrar.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> TCryptoServicesRegistrar.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> voidCryptoServicesRegistrar.setGlobalProperty(CryptoServicesRegistrar.Property property, T... propertyValue) Set the value of the the passed in property globally in the JVM.static <T> voidCryptoServicesRegistrar.setThreadProperty(CryptoServicesRegistrar.Property property, T... propertyValue) Set the value of the the passed in property on the current thread only.