mirror of
https://github.com/oopuuu/zTC1.git
synced 2025-12-16 23:18:24 +08:00
32 lines
673 B
C
32 lines
673 B
C
#ifndef crypto_scalarmult_curve25519_H
|
|
#define crypto_scalarmult_curve25519_H
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "export.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define crypto_scalarmult_curve25519_BYTES 32
|
|
SODIUM_EXPORT
|
|
size_t crypto_scalarmult_curve25519_bytes(void);
|
|
|
|
#define crypto_scalarmult_curve25519_SCALARBYTES 32
|
|
SODIUM_EXPORT
|
|
size_t crypto_scalarmult_curve25519_scalarbytes(void);
|
|
|
|
SODIUM_EXPORT
|
|
int crypto_scalarmult_curve25519(unsigned char *q, const unsigned char *n,
|
|
const unsigned char *p);
|
|
|
|
SODIUM_EXPORT
|
|
int crypto_scalarmult_curve25519_base(unsigned char *q, const unsigned char *n);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|