
no.difi.asic.extras.CmsEncryptedAsicAbstract Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-asic Show documentation
Show all versions of commons-asic Show documentation
Generic implementation of ASiC-E archives in accordance with ETSI 102 918 v1.3.1.
The newest version!
package no.difi.asic.extras;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import java.security.Security;
abstract class CmsEncryptedAsicAbstract {
protected static final String BC = BouncyCastleProvider.PROVIDER_NAME;
static {
if (Security.getProvider(BouncyCastleProvider.PROVIDER_NAME) == null)
Security.addProvider(new BouncyCastleProvider());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy