
no.difi.asic.SignatureMethod 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;
public enum SignatureMethod {
CAdES(MessageDigestAlgorithm.SHA256),
XAdES(MessageDigestAlgorithm.SHA256),
;
private MessageDigestAlgorithm messageDigestAlgorithm;
SignatureMethod(MessageDigestAlgorithm messageDigestAlgorithm) {
this.messageDigestAlgorithm = messageDigestAlgorithm;
}
public MessageDigestAlgorithm getMessageDigestAlgorithm() {
return messageDigestAlgorithm;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy