All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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