crypto_verify_64.h 442 B

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