mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2026-07-14 15:25:41 +00:00
14 lines
287 B
C
14 lines
287 B
C
#ifndef __curve25519_donnaDotH__
|
|
#define __curve25519_donnaDotH__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void curve25519_donna( unsigned char *outKey, const unsigned char *inSecret, const unsigned char *inBasePoint );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __curve25519_donnaDotH__
|