aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-04-12 22:39:08 +0200
committerChristian Grothoff <christian@grothoff.org>2019-04-12 22:39:08 +0200
commit6ec7797ac937cb7e903688d5743c7debeda115fc (patch)
tree703896c00300230323916a7244853088aee21576
parent10a9ae85edd4f0de7f06b96ed839d576a724b4a4 (diff)
downloadgnunet-6ec7797ac937cb7e903688d5743c7debeda115fc.tar.gz
gnunet-6ec7797ac937cb7e903688d5743c7debeda115fc.zip
new key, new HELLO
-rw-r--r--contrib/hellos/DSTJBRRKZ8TBW3FGK6B0M5QXWT9WYNZ45H5MCV4HY7ST64Q8T9F0bin208 -> 0 bytes
-rw-r--r--contrib/hellos/Makefile.am2
-rw-r--r--contrib/hellos/Y924NSHMMZ1N1SQCE5TXF93ED6S6JY311K0QT86G9WJC68F6XVZ0bin0 -> 304 bytes
-rw-r--r--src/include/gnunet_common.h21
-rw-r--r--src/include/gnunet_crypto_lib.h19
5 files changed, 22 insertions, 20 deletions
diff --git a/contrib/hellos/DSTJBRRKZ8TBW3FGK6B0M5QXWT9WYNZ45H5MCV4HY7ST64Q8T9F0 b/contrib/hellos/DSTJBRRKZ8TBW3FGK6B0M5QXWT9WYNZ45H5MCV4HY7ST64Q8T9F0
deleted file mode 100644
index b8cbcf7d8..000000000
--- a/contrib/hellos/DSTJBRRKZ8TBW3FGK6B0M5QXWT9WYNZ45H5MCV4HY7ST64Q8T9F0
+++ /dev/null
Binary files differ
diff --git a/contrib/hellos/Makefile.am b/contrib/hellos/Makefile.am
index 2ef785b27..d2fc6b89e 100644
--- a/contrib/hellos/Makefile.am
+++ b/contrib/hellos/Makefile.am
@@ -1,6 +1,6 @@
1pkghellodir= $(pkgdatadir)/hellos 1pkghellodir= $(pkgdatadir)/hellos
2 2
3pkghello_DATA = \ 3pkghello_DATA = \
4 DSTJBRRKZ8TBW3FGK6B0M5QXWT9WYNZ45H5MCV4HY7ST64Q8T9F0 4 Y924NSHMMZ1N1SQCE5TXF93ED6S6JY311K0QT86G9WJC68F6XVZ0
5 5
6EXTRA_DIST = $(pkghello_DATA) 6EXTRA_DIST = $(pkghello_DATA)
diff --git a/contrib/hellos/Y924NSHMMZ1N1SQCE5TXF93ED6S6JY311K0QT86G9WJC68F6XVZ0 b/contrib/hellos/Y924NSHMMZ1N1SQCE5TXF93ED6S6JY311K0QT86G9WJC68F6XVZ0
new file mode 100644
index 000000000..eeb6a15f7
--- /dev/null
+++ b/contrib/hellos/Y924NSHMMZ1N1SQCE5TXF93ED6S6JY311K0QT86G9WJC68F6XVZ0
Binary files differ
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
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"
51#endif 51#endif
52#endif 52#endif
53 53
54/**
55 * @brief A 512-bit hashcode. These are the default length for GNUnet, using SHA-512.
56 */
57struct GNUNET_HashCode
58{
59 uint32_t bits[512 / 8 / sizeof (uint32_t)]; /* = 16 */
60};
61
62
63
64/**
65 * @brief A 256-bit hashcode. Used under special conditions, like when space
66 * is critical and security is not impacted by it.
67 */
68struct GNUNET_ShortHashCode
69{
70 uint32_t bits[256 / 8 / sizeof (uint32_t)]; /* = 8 */
71};
72
73 54
74/** 55/**
75 * The identity of the host (wraps the signing key of the peer). 56 * The identity of the host (wraps the signing key of the peer).