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

org.jboss.resteasy.jose.jws.util.BouncyIntegration Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha4
Show newest version
package org.jboss.resteasy.jose.jws.util;

import org.bouncycastle.jce.provider.BouncyCastleProvider;
import java.security.Security;

public class BouncyIntegration {
    static {
        if (Security.getProvider("BC") == null) Security.addProvider(new BouncyCastleProvider());
    }

    public static void init() {
        // empty, the static class does it
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy