cn.hyperchain.sdk.crypto.jce.SpongyCastleProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of litesdk Show documentation
Show all versions of litesdk Show documentation
A Java client tool for Hyperchain
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