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

cn.hyperchain.sdk.crypto.jce.SpongyCastleProvider Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package cn.hyperchain.sdk.crypto.jce;

import org.bouncycastle.jce.provider.BouncyCastleProvider;

import java.security.Provider;

public final class SpongyCastleProvider {

    private static class Holder {
        private static final Provider INSTANCE = new BouncyCastleProvider();
    }

    public static Provider getInstance() {
        return Holder.INSTANCE;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy