]> 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 0968becd28d98b5a452a3a147060018d8908d917..2245dfb7a04a91ddf467fb4b92cfcf64e800c7d5 100644 (file)
@@ -1,33 +1,45 @@
-/* nettle-meta-hashes.c */
-
-/* nettle, low-level cryptographics library
- *  
- * Copyright (C) 2011 Daniel Kahn Gillmor
- * 
- * The nettle library is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at your
- * option) any later version.
- * 
- * The nettle library is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
- * License for more details.
- * 
- * You should have received a copy of the GNU Lesser General Public License
- * along with the nettle library; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
- * MA 02111-1307, USA.
- */
+/* nettle-meta-hashes.c
+
+   Copyright (C) 2011 Daniel Kahn Gillmor
+
+   This file is part of GNU Nettle.
+
+   GNU Nettle is free software: you can redistribute it and/or
+   modify it under the terms of either:
+
+     * the GNU Lesser General Public License as published by the Free
+       Software Foundation; either version 3 of the License, or (at your
+       option) any later version.
+
+   or
+
+     * the GNU General Public License as published by the Free
+       Software Foundation; either version 2 of the License, or (at your
+       option) any later version.
+
+   or both in parallel, as here.
+
+   GNU Nettle is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
+
+   You should have received copies of the GNU General Public License and
+   the GNU Lesser General Public License along with this program.  If
+   not, see http://www.gnu.org/licenses/.
+*/
 
 #if HAVE_CONFIG_H
 # include "config.h"
 #endif
 
 #include <stddef.h>
+
 #include "nettle-meta.h"
 
-const struct nettle_hash * const nettle_hashes[] = {
+const struct nettle_hash * const _nettle_hashes[] = {
+  &nettle_gosthash94,
+  &nettle_gosthash94cp,
   &nettle_md2,
   &nettle_md4,
   &nettle_md5,
@@ -37,5 +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;
+}