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

com.wxmlabs.aurora.DigestSignatureService Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy