Sha256: 2c41a2760e4022d9d43a2fdd2701997fdd56f4889a3c84da7d9ce44a3db8e9b9
Contents?: true
Size: 873 Bytes
Versions: 4
Compression:
Stored size: 873 Bytes
Contents
/* version 20080913 D. J. Bernstein Public domain. */ #include "api.h" #include "crypto_core_hsalsa20.h" #include "crypto_stream_salsa20.h" #include "utils.h" static const unsigned char sigma[16] = { 'e', 'x', 'p', 'a', 'n', 'd', ' ', '3', '2', '-', 'b', 'y', 't', 'e', ' ', 'k' }; int crypto_stream_xor_ic( unsigned char *c, const unsigned char *m,unsigned long long mlen, const unsigned char *n,uint64_t ic, const unsigned char *k ) { unsigned char subkey[32]; int ret; crypto_core_hsalsa20(subkey,n,k,sigma); ret = crypto_stream_salsa20_xor_ic(c,m,mlen,n + 16,ic,subkey); sodium_memzero(subkey, sizeof subkey); return ret; } int crypto_stream_xor( unsigned char *c, const unsigned char *m,unsigned long long mlen, const unsigned char *n, const unsigned char *k ) { return crypto_stream_xor_ic(c, m, mlen, n, 0ULL, k); }
Version data entries
4 entries across 4 versions & 1 rubygems