static <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.
|