Package | Description |
---|---|
old.org.bouncycastle.jce.provider |
Modifier and Type | Class and Description |
---|---|
class |
BouncyCastleProvider
To add the provider at runtime use:
import java.security.Security;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
Security.addProvider(new BouncyCastleProvider());
The provider can also be configured as part of your environment via
static registration by adding an entry to the java.security properties
file (found in $JAVA_HOME/jre/lib/security/java.security, where
$JAVA_HOME is the location of your JDK/JRE distribution).
|
Copyright © 2015. All rights reserved.