Sha256: 152cc8d0bdba607f12a581eadb3d8de8d34015e2b8f2321d3ea639c14f6c3963
Contents?: true
Size: 488 Bytes
Versions: 15
Compression:
Stored size: 488 Bytes
Contents
#include "crypto_stream_salsa20.h" size_t crypto_stream_salsa20_keybytes(void) { return crypto_stream_salsa20_KEYBYTES; } size_t crypto_stream_salsa20_noncebytes(void) { return crypto_stream_salsa20_NONCEBYTES; } int crypto_stream_salsa20_xor(unsigned char *c, const unsigned char *m, unsigned long long mlen, const unsigned char *n, const unsigned char *k) { return crypto_stream_salsa20_xor_ic(c, m, mlen, n, 0U, k); }
Version data entries
15 entries across 15 versions & 1 rubygems