From 6ec7797ac937cb7e903688d5743c7debeda115fc Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Fri, 12 Apr 2019 22:39:08 +0200 Subject: new key, new HELLO --- src/include/gnunet_common.h | 21 +++++++++++++++++++++ src/include/gnunet_crypto_lib.h | 19 ------------------- 2 files changed, 21 insertions(+), 19 deletions(-) (limited to 'src') diff --git a/src/include/gnunet_common.h b/src/include/gnunet_common.h index 94ecd06f8..2c40aef79 100644 --- a/src/include/gnunet_common.h +++ b/src/include/gnunet_common.h @@ -256,6 +256,27 @@ extern "C" GNUNET_NETWORK_STRUCT_BEGIN +/** + * @brief A 512-bit hashcode. These are the default length for GNUnet, using SHA-512. + */ +struct GNUNET_HashCode +{ + uint32_t bits[512 / 8 / sizeof (uint32_t)]; /* = 16 */ +}; + + + +/** + * @brief A 256-bit hashcode. Used under special conditions, like when space + * is critical and security is not impacted by it. + */ +struct GNUNET_ShortHashCode +{ + uint32_t bits[256 / 8 / sizeof (uint32_t)]; /* = 8 */ +}; + + + /** * Header for all communications. */ diff --git a/src/include/gnunet_crypto_lib.h b/src/include/gnunet_crypto_lib.h index c6ae943b9..257fee48d 100644 --- a/src/include/gnunet_crypto_lib.h +++ b/src/include/gnunet_crypto_lib.h @@ -51,25 +51,6 @@ extern "C" #endif #endif -/** - * @brief A 512-bit hashcode. These are the default length for GNUnet, using SHA-512. - */ -struct GNUNET_HashCode -{ - uint32_t bits[512 / 8 / sizeof (uint32_t)]; /* = 16 */ -}; - - - -/** - * @brief A 256-bit hashcode. Used under special conditions, like when space - * is critical and security is not impacted by it. - */ -struct GNUNET_ShortHashCode -{ - uint32_t bits[256 / 8 / sizeof (uint32_t)]; /* = 8 */ -}; - /** * The identity of the host (wraps the signing key of the peer). -- cgit v1.2.3