Sha256: c726237642e7c269fabbc2442f2ce008b0de9a2cf90469758853d78f27a1eee6
Contents?: true
Size: 532 Bytes
Versions: 6
Compression:
Stored size: 532 Bytes
Contents
#ifndef stream_salsa20_H #define stream_salsa20_H #include <stdint.h> typedef struct crypto_stream_salsa20_implementation { int (*stream)(unsigned char *c, unsigned long long clen, const unsigned char *n, const unsigned char *k); int (*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); } crypto_stream_salsa20_implementation; #endif
Version data entries
6 entries across 6 versions & 2 rubygems