mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-29 01:18:55 +00:00
bf9710fd5a
This only affects build_android, if nacl-gcc-prep is run then build/`uname -s` will be created.
18 lines
413 B
C
18 lines
413 B
C
#include "crypto_core_hsalsa20.h"
|
|
#include "crypto_scalarmult_curve25519.h"
|
|
#include "crypto_box.h"
|
|
|
|
static const unsigned char sigma[16] = "expand 32-byte k";
|
|
static const unsigned char n[16] = {0};
|
|
|
|
int crypto_box_beforenm(
|
|
unsigned char *k,
|
|
const unsigned char *pk,
|
|
const unsigned char *sk
|
|
)
|
|
{
|
|
unsigned char s[32];
|
|
crypto_scalarmult_curve25519(s,sk,pk);
|
|
return crypto_core_hsalsa20(k,n,s,sigma);
|
|
}
|