com.wxmlabs.aurora.DigestSignatureService 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.PublicKey;
public interface DigestSignatureService extends SignatureService {
Signer addSigner(String name, PrivateKey signerKey, DigestAlgorithm defaultDigestAlg);
Verifier addVerifier(String name, PublicKey signerPub, DigestAlgorithm defaultDigestAlg);
}