From 45ac2d882641489598e9ad9073992b4224b5c909 Mon Sep 17 00:00:00 2001 From: Ivan Vilata-i-Balaguer Date: Tue, 19 Jan 2016 13:04:04 +0100 Subject: [PATCH] replace ``sha3`` name with ``sha3-512``, add other SHA-3 functions (#11) Now ``sha3`` should be used as a deprecated alias to ``sha3-512``. --- README.md | 8 +++++++- hashtable.csv | 7 ++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7d7e68c..7a685c6 100644 --- a/README.md +++ b/README.md @@ -70,11 +70,17 @@ code name 0x11 sha1 0x12 sha2-256 0x13 sha2-512 -0x14 sha3 +0x14 sha3-512 +0x15 sha3-384 +0x16 sha3-256 +0x17 sha3-224 +0x18 shake-128 +0x19 shake-256 0x40 blake2b 0x41 blake2s # 0x00-0x0f reserved for application specific functions # 0x10-0x3f reserved for SHA standard functions +# 0x14 formerly had the name "sha3", now deprecated ``` diff --git a/hashtable.csv b/hashtable.csv index c72f9de..874a659 100644 --- a/hashtable.csv +++ b/hashtable.csv @@ -2,6 +2,11 @@ code, name 0x11, sha1 0x12, sha2-256 0x13, sha2-512 -0x14, sha3 +0x14, sha3-512 +0x15, sha3-384 +0x16, sha3-256 +0x17, sha3-224 +0x18, shake-128 +0x19, shake-256 0x40, blake2b 0x41, blake2s