mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 10:35:50 +00:00
9 lines
259 B
C
9 lines
259 B
C
#ifndef CURVE25519_REF10_H
|
|
#define CURVE25519_REF10_H
|
|
|
|
int crypto_scalarmult_base_ref10(unsigned char *q,const unsigned char *n);
|
|
int crypto_scalarmult_ref10(unsigned char *q, const unsigned char *n, const unsigned char *p);
|
|
|
|
#endif /* CURVE25519_REF10_H */
|
|
|