aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_common.h')
-rw-r--r--src/include/gnunet_common.h21
1 files changed, 21 insertions, 0 deletions
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
@@ -257,6 +257,27 @@ extern "C"
257GNUNET_NETWORK_STRUCT_BEGIN 257GNUNET_NETWORK_STRUCT_BEGIN
258 258
259/** 259/**
260 * @brief A 512-bit hashcode. These are the default length for GNUnet, using SHA-512.
261 */
262struct GNUNET_HashCode
263{
264 uint32_t bits[512 / 8 / sizeof (uint32_t)]; /* = 16 */
265};
266
267
268
269/**
270 * @brief A 256-bit hashcode. Used under special conditions, like when space
271 * is critical and security is not impacted by it.
272 */
273struct GNUNET_ShortHashCode
274{
275 uint32_t bits[256 / 8 / sizeof (uint32_t)]; /* = 8 */
276};
277
278
279
280/**
260 * Header for all communications. 281 * Header for all communications.
261 */ 282 */
262struct GNUNET_MessageHeader 283struct GNUNET_MessageHeader