Sha256: 6f49d8e09d7360e387d2c77fd2dd164f8c2ffb23a9e0de9df2115f0af97d71a0
Contents?: true
Size: 1.91 KB
Versions: 2
Compression:
Stored size: 1.91 KB
Contents
#ifndef crypto_stream_aes128ctr_H #define crypto_stream_aes128ctr_H /* * WARNING: This is just a stream cipher. It is NOT authenticated encryption. * While it provides some protection against eavesdropping, it does NOT * provide any security against active attacks. * Unless you know what you're doing, what you are looking for is probably * the crypto_box functions. */ #include <stddef.h> #include "export.h" #define crypto_stream_aes128ctr_KEYBYTES 16U #define crypto_stream_aes128ctr_NONCEBYTES 16U #define crypto_stream_aes128ctr_BEFORENMBYTES 1408U #ifdef __cplusplus extern "C" { #endif SODIUM_EXPORT size_t crypto_stream_aes128ctr_keybytes(void); SODIUM_EXPORT size_t crypto_stream_aes128ctr_noncebytes(void); SODIUM_EXPORT size_t crypto_stream_aes128ctr_beforenmbytes(void); SODIUM_EXPORT const char * crypto_stream_aes128ctr_primitive(void); SODIUM_EXPORT int crypto_stream_aes128ctr(unsigned char *,unsigned long long,const unsigned char *,const unsigned char *); SODIUM_EXPORT int crypto_stream_aes128ctr_xor(unsigned char *,const unsigned char *,unsigned long long,const unsigned char *,const unsigned char *); SODIUM_EXPORT int crypto_stream_aes128ctr_beforenm(unsigned char *,const unsigned char *); SODIUM_EXPORT int crypto_stream_aes128ctr_afternm(unsigned char *,unsigned long long,const unsigned char *,const unsigned char *); SODIUM_EXPORT int crypto_stream_aes128ctr_xor_afternm(unsigned char *,const unsigned char *,unsigned long long,const unsigned char *,const unsigned char *); #ifdef __cplusplus } #endif #define crypto_stream_aes128ctr_portable crypto_stream_aes128ctr #define crypto_stream_aes128ctr_portable_xor crypto_stream_aes128ctr_xor #define crypto_stream_aes128ctr_portable_beforenm crypto_stream_aes128ctr_beforenm #define crypto_stream_aes128ctr_portable_afternm crypto_stream_aes128ctr_afternm #define crypto_stream_aes128ctr_portable_xor_afternm crypto_stream_aes128ctr_xor_afternm #endif
Version data entries
2 entries across 2 versions & 1 rubygems