Sha256: 978db82211c1e7994c31cbe26e37402ef1bcadce751d9fc04ebe345e5916e84c

Contents?: true

Size: 413 Bytes

Versions: 3

Compression:

Stored size: 413 Bytes

Contents

#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);
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby_nacl-0.1.2 ext/ruby_nacl/NaCl/crypto_box/curve25519xsalsa20poly1305/ref/before.c
ruby_nacl-0.1.1 ext/ruby_nacl/NaCl/crypto_box/curve25519xsalsa20poly1305/ref/before.c
ruby_nacl-0.1.0 ext/ruby_nacl/NaCl/crypto_box/curve25519xsalsa20poly1305/ref/before.c