mirror of
https://github.com/servalproject/serval-dna.git
synced 2025-01-09 06:22:58 +00:00
bf9710fd5a
This only affects build_android, if nacl-gcc-prep is run then build/`uname -s` will be created.
13 lines
236 B
C
13 lines
236 B
C
#include "crypto_scalarmult_curve25519.h"
|
|
#include "crypto_box.h"
|
|
#include "randombytes.h"
|
|
|
|
int crypto_box_keypair(
|
|
unsigned char *pk,
|
|
unsigned char *sk
|
|
)
|
|
{
|
|
randombytes(sk,32);
|
|
return crypto_scalarmult_curve25519_base(pk,sk);
|
|
}
|