mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-19 02:42:05 +01:00
Add SHA3 hash algorithms to HashAlgorithm class
This commit is contained in:
parent
d4953bd8f6
commit
59adbe1d0a
1 changed files with 2 additions and 0 deletions
|
@ -27,6 +27,8 @@ public enum HashAlgorithm {
|
|||
SHA384 (HashAlgorithmTags.SHA384, "SHA384"),
|
||||
SHA512 (HashAlgorithmTags.SHA512, "SHA512"),
|
||||
SHA224 (HashAlgorithmTags.SHA224, "SHA224"),
|
||||
SHA3_256 (12, "SHA3-256"),
|
||||
SHA3_512 (14, "SHA3-512"),
|
||||
;
|
||||
|
||||
private static final Map<Integer, HashAlgorithm> ID_MAP = new HashMap<>();
|
||||
|
|
Loading…
Reference in a new issue