mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
12 lines
341 B
C
12 lines
341 B
C
|
|
#ifndef scalarmult_poly1305_H
|
|
#define scalarmult_poly1305_H
|
|
|
|
typedef struct crypto_scalarmult_curve25519_implementation {
|
|
int (*mult)(unsigned char *q, const unsigned char *n,
|
|
const unsigned char *p);
|
|
int (*mult_base)(unsigned char *q, const unsigned char *n);
|
|
} crypto_scalarmult_curve25519_implementation;
|
|
|
|
#endif
|