com.wxmlabs.aurora.DigestSigner 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;
public interface DigestSigner extends Signer {
byte[] sign(byte[] plaintext, DigestAlgorithm digestAlgorithm);
}