new key, new HELLO
authorChristian Grothoff <christian@grothoff.org>
Fri, 12 Apr 2019 20:39:08 +0000 (22:39 +0200)
committerChristian Grothoff <christian@grothoff.org>
Fri, 12 Apr 2019 20:39:08 +0000 (22:39 +0200)
contrib/hellos/DSTJBRRKZ8TBW3FGK6B0M5QXWT9WYNZ45H5MCV4HY7ST64Q8T9F0 [deleted file]
contrib/hellos/Makefile.am
contrib/hellos/Y924NSHMMZ1N1SQCE5TXF93ED6S6JY311K0QT86G9WJC68F6XVZ0 [new file with mode: 0644]
src/include/gnunet_common.h
src/include/gnunet_crypto_lib.h

diff --git a/contrib/hellos/DSTJBRRKZ8TBW3FGK6B0M5QXWT9WYNZ45H5MCV4HY7ST64Q8T9F0 b/contrib/hellos/DSTJBRRKZ8TBW3FGK6B0M5QXWT9WYNZ45H5MCV4HY7ST64Q8T9F0
deleted file mode 100644 (file)
index b8cbcf7..0000000
Binary files a/contrib/hellos/DSTJBRRKZ8TBW3FGK6B0M5QXWT9WYNZ45H5MCV4HY7ST64Q8T9F0 and /dev/null differ
index 2ef785b272f954ea1a3cb9a9b774089f6bc4c569..d2fc6b89ec73dbff8e1eb08582b9781683a11dd6 100644 (file)
@@ -1,6 +1,6 @@
 pkghellodir= $(pkgdatadir)/hellos
 
 pkghello_DATA = \
-  DSTJBRRKZ8TBW3FGK6B0M5QXWT9WYNZ45H5MCV4HY7ST64Q8T9F0
+  Y924NSHMMZ1N1SQCE5TXF93ED6S6JY311K0QT86G9WJC68F6XVZ0 
 
 EXTRA_DIST = $(pkghello_DATA)
diff --git a/contrib/hellos/Y924NSHMMZ1N1SQCE5TXF93ED6S6JY311K0QT86G9WJC68F6XVZ0 b/contrib/hellos/Y924NSHMMZ1N1SQCE5TXF93ED6S6JY311K0QT86G9WJC68F6XVZ0
new file mode 100644 (file)
index 0000000..eeb6a15
Binary files /dev/null and b/contrib/hellos/Y924NSHMMZ1N1SQCE5TXF93ED6S6JY311K0QT86G9WJC68F6XVZ0 differ
index 94ecd06f83f3e1f62a8a4d376096a8f7560e0171..2c40aef797e348700a4b92699726843707ffe043 100644 (file)
@@ -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.
  */
index c6ae943b9615480a09205a5e61fc56240080b865..257fee48dedab3ebd2ffc97c742eef2355c2a51c 100644 (file)
@@ -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).