gnunet-android

GNUnet for Android
Log | Files | Refs | README

crypto_verify_64.h (419B)


      1 #ifndef crypto_verify_64_H
      2 #define crypto_verify_64_H
      3 
      4 #include <stddef.h>
      5 #include "export.h"
      6 
      7 #ifdef __cplusplus
      8 extern "C" {
      9 #endif
     10 
     11 #define crypto_verify_64_BYTES 64U
     12 SODIUM_EXPORT
     13 size_t crypto_verify_64_bytes(void);
     14 
     15 SODIUM_EXPORT
     16 int crypto_verify_64(const unsigned char *x, const unsigned char *y)
     17             __attribute__ ((warn_unused_result)) __attribute__ ((nonnull));
     18 
     19 #ifdef __cplusplus
     20 }
     21 #endif
     22 
     23 #endif