com.wxmlabs.aurora.CMSSignatureService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aurora-api Show documentation
Show all versions of aurora-api Show documentation
Aurora Cryptography - a simple digital signature signer
The newest version!
package com.wxmlabs.aurora;
import java.security.PrivateKey;
import java.security.cert.X509Certificate;
public interface CMSSignatureService extends SignatureService {
Signer addCMSSigner(String name, PrivateKey signerKey, X509Certificate signerCert, DigestAlgorithm defaultDigestAlg);
Verifier addCMSVerifier(String name, X509Certificate signerCert);
}