![JAR search and dependency download from the Maven repository](/logo.png)
org.jboss.resteasy.jose.jws.util.BouncyIntegration Maven / Gradle / Ivy
The newest version!
package org.jboss.resteasy.jose.jws.util;
import java.security.Security;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
public class BouncyIntegration {
static {
if (Security.getProvider("BC") == null)
Security.addProvider(new BouncyCastleProvider());
}
public static void init() {
// empty, the static class does it
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy