Sha256: 2cb83ae66cb7a98f64fd8df955c29802f994792a52b2bea6a51a7e6e6d440cd0
Contents?: true
Size: 320 Bytes
Versions: 3
Compression:
Stored size: 320 Bytes
Contents
#include <string> using std::string; #include "crypto_box.h" string crypto_box_keypair(string *sk_string) { unsigned char pk[crypto_box_PUBLICKEYBYTES]; unsigned char sk[crypto_box_SECRETKEYBYTES]; crypto_box_keypair(pk,sk); *sk_string = string((char *) sk,sizeof sk); return string((char *) pk,sizeof pk); }
Version data entries
3 entries across 3 versions & 1 rubygems