Cable-Desktop/curve25519-donna.h

17 lines
220 B
C
Raw Normal View History

2014-01-22 07:23:41 +01:00
#ifndef CURVE25519_DONNA_H
#define CURVE25519_DONNA_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
int curve25519_donna(uint8_t *, const uint8_t *, const uint8_t *);
#ifdef __cplusplus
}
#endif
#endif