mirror of
https://github.com/servalproject/serval-dna.git
synced 2025-01-12 16:02:46 +00:00
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);
|
||
|
}
|