]> git.ipfire.org Git - thirdparty/nettle.git/blobdiff - nettle-meta-hashes.c
ChangeLog entry for elf_aux_info fix
[thirdparty/nettle.git] / nettle-meta-hashes.c
index 5df6f794639ba9850d81c38667fe35dffb798ee2..2245dfb7a04a91ddf467fb4b92cfcf64e800c7d5 100644 (file)
@@ -37,9 +37,9 @@
 
 #include "nettle-meta.h"
 
-#undef nettle_hashes
-
-const struct nettle_hash * const nettle_hashes[] = {
+const struct nettle_hash * const _nettle_hashes[] = {
+  &nettle_gosthash94,
+  &nettle_gosthash94cp,
   &nettle_md2,
   &nettle_md4,
   &nettle_md5,
@@ -49,15 +49,20 @@ const struct nettle_hash * const nettle_hashes[] = {
   &nettle_sha256,
   &nettle_sha384,
   &nettle_sha512,
+  &nettle_sha512_224,
+  &nettle_sha512_256,
   &nettle_sha3_224,
   &nettle_sha3_256,
   &nettle_sha3_384,
   &nettle_sha3_512,
+  &nettle_streebog256,
+  &nettle_streebog512,
+  &nettle_sm3,
   NULL
 };
 
 const struct nettle_hash * const *
 nettle_get_hashes (void)
 {
-  return nettle_hashes;
+  return _nettle_hashes;
 }