mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-18 13:38:12 +00:00
11 lines
310 B
C
11 lines
310 B
C
#ifndef CURVE25519_H
|
|
#define CURVE25519_H
|
|
|
|
typedef unsigned char curve25519_key[32];
|
|
|
|
void curve25519_donna(curve25519_key mypublic, const curve25519_key secret, const curve25519_key basepoint);
|
|
void curve25519_donna_basepoint(curve25519_key mypublic, const curve25519_key secret);
|
|
|
|
#endif /* CURVE25519_H */
|
|
|