aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_crypto_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_crypto_lib.h')
-rw-r--r--src/include/gnunet_crypto_lib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_crypto_lib.h b/src/include/gnunet_crypto_lib.h
index 03fb16a43..2bbf2b1e7 100644
--- a/src/include/gnunet_crypto_lib.h
+++ b/src/include/gnunet_crypto_lib.h
@@ -1700,7 +1700,7 @@ GNUNET_CRYPTO_eddsa_sign_ (
1700 */ 1700 */
1701#define GNUNET_CRYPTO_eddsa_sign(priv,ps,sig) do { \ 1701#define GNUNET_CRYPTO_eddsa_sign(priv,ps,sig) do { \
1702 /* check size is set correctly */ \ 1702 /* check size is set correctly */ \
1703 GNUNET_assert (htonl ((ps)->purpose.size) == sizeof (*ps)); \ 1703 GNUNET_assert (ntohl ((ps)->purpose.size) == sizeof (*ps)); \
1704 /* check 'ps' begins with the purpose */ \ 1704 /* check 'ps' begins with the purpose */ \
1705 GNUNET_static_assert (((void*) (ps)) == \ 1705 GNUNET_static_assert (((void*) (ps)) == \
1706 ((void*) &(ps)->purpose)); \ 1706 ((void*) &(ps)->purpose)); \
@@ -1747,7 +1747,7 @@ GNUNET_CRYPTO_ecdsa_sign_ (
1747 */ 1747 */
1748#define GNUNET_CRYPTO_ecdsa_sign(priv,ps,sig) do { \ 1748#define GNUNET_CRYPTO_ecdsa_sign(priv,ps,sig) do { \
1749 /* check size is set correctly */ \ 1749 /* check size is set correctly */ \
1750 GNUNET_assert (htonl ((ps)->purpose.size) == sizeof (*(ps))); \ 1750 GNUNET_assert (ntohl ((ps)->purpose.size) == sizeof (*(ps))); \
1751 /* check 'ps' begins with the purpose */ \ 1751 /* check 'ps' begins with the purpose */ \
1752 GNUNET_static_assert (((void*) (ps)) == \ 1752 GNUNET_static_assert (((void*) (ps)) == \
1753 ((void*) &(ps)->purpose)); \ 1753 ((void*) &(ps)->purpose)); \
@@ -1853,7 +1853,7 @@ GNUNET_CRYPTO_ecdsa_verify_ (
1853 */ 1853 */
1854#define GNUNET_CRYPTO_ecdsa_verify(purp,ps,sig,pub) ({ \ 1854#define GNUNET_CRYPTO_ecdsa_verify(purp,ps,sig,pub) ({ \
1855 /* check size is set correctly */ \ 1855 /* check size is set correctly */ \
1856 GNUNET_assert (htonl ((ps)->purpose.size) == sizeof (*(ps))); \ 1856 GNUNET_assert (ntohl ((ps)->purpose.size) == sizeof (*(ps))); \
1857 /* check 'ps' begins with the purpose */ \ 1857 /* check 'ps' begins with the purpose */ \
1858 GNUNET_static_assert (((void*) (ps)) == \ 1858 GNUNET_static_assert (((void*) (ps)) == \
1859 ((void*) &(ps)->purpose)); \ 1859 ((void*) &(ps)->purpose)); \