mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-01 09:16:00 +00:00
MiniDNS: added SHA-384
This commit is contained in:
parent
957ffdc2a2
commit
9f9edc69cb
1 changed files with 6 additions and 0 deletions
|
@ -47,6 +47,12 @@ public final class AlgorithmMap {
|
||||||
// SHA-256 is MANDATORY
|
// SHA-256 is MANDATORY
|
||||||
throw new DnssecValidatorInitializationException("SHA-256 is mandatory", e);
|
throw new DnssecValidatorInitializationException("SHA-256 is mandatory", e);
|
||||||
}
|
}
|
||||||
|
try {
|
||||||
|
dsDigestMap.put(DigestAlgorithm.SHA384, new JavaSecDigestCalculator("SHA-384"));
|
||||||
|
} catch (NoSuchAlgorithmException e) {
|
||||||
|
// SHA-384 is OPTIONAL
|
||||||
|
LOGGER.log(Level.FINE, "Platform does not support SHA-384", e);
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
signatureMap.put(SignatureAlgorithm.RSAMD5, new RsaSignatureVerifier("MD5withRSA"));
|
signatureMap.put(SignatureAlgorithm.RSAMD5, new RsaSignatureVerifier("MD5withRSA"));
|
||||||
|
|
Loading…
Reference in a new issue