mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-21 22:17:53 +00:00
44 lines
2.7 KiB
C
44 lines
2.7 KiB
C
|
#ifndef crypto_stream_salsa208_H
|
||
|
#define crypto_stream_salsa208_H
|
||
|
|
||
|
#define crypto_stream_salsa208_ref_KEYBYTES 32
|
||
|
#define crypto_stream_salsa208_ref_NONCEBYTES 8
|
||
|
#ifdef __cplusplus
|
||
|
#include <string>
|
||
|
extern std::string crypto_stream_salsa208_ref(size_t,const std::string &,const std::string &);
|
||
|
extern std::string crypto_stream_salsa208_ref_xor(const std::string &,const std::string &,const std::string &);
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
extern int crypto_stream_salsa208_ref(unsigned char *,unsigned long long,const unsigned char *,const unsigned char *);
|
||
|
extern int crypto_stream_salsa208_ref_xor(unsigned char *,const unsigned char *,unsigned long long,const unsigned char *,const unsigned char *);
|
||
|
extern int crypto_stream_salsa208_ref_beforenm(unsigned char *,const unsigned char *);
|
||
|
extern int crypto_stream_salsa208_ref_afternm(unsigned char *,unsigned long long,const unsigned char *,const unsigned char *);
|
||
|
extern int crypto_stream_salsa208_ref_xor_afternm(unsigned char *,const unsigned char *,unsigned long long,const unsigned char *,const unsigned char *);
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#define crypto_stream_salsa208 crypto_stream_salsa208_ref
|
||
|
/* POTATO crypto_stream_salsa208_ref crypto_stream_salsa208_ref crypto_stream_salsa208 */
|
||
|
#define crypto_stream_salsa208_xor crypto_stream_salsa208_ref_xor
|
||
|
/* POTATO crypto_stream_salsa208_ref_xor crypto_stream_salsa208_ref crypto_stream_salsa208 */
|
||
|
#define crypto_stream_salsa208_beforenm crypto_stream_salsa208_ref_beforenm
|
||
|
/* POTATO crypto_stream_salsa208_ref_beforenm crypto_stream_salsa208_ref crypto_stream_salsa208 */
|
||
|
#define crypto_stream_salsa208_afternm crypto_stream_salsa208_ref_afternm
|
||
|
/* POTATO crypto_stream_salsa208_ref_afternm crypto_stream_salsa208_ref crypto_stream_salsa208 */
|
||
|
#define crypto_stream_salsa208_xor_afternm crypto_stream_salsa208_ref_xor_afternm
|
||
|
/* POTATO crypto_stream_salsa208_ref_xor_afternm crypto_stream_salsa208_ref crypto_stream_salsa208 */
|
||
|
#define crypto_stream_salsa208_KEYBYTES crypto_stream_salsa208_ref_KEYBYTES
|
||
|
/* POTATO crypto_stream_salsa208_ref_KEYBYTES crypto_stream_salsa208_ref crypto_stream_salsa208 */
|
||
|
#define crypto_stream_salsa208_NONCEBYTES crypto_stream_salsa208_ref_NONCEBYTES
|
||
|
/* POTATO crypto_stream_salsa208_ref_NONCEBYTES crypto_stream_salsa208_ref crypto_stream_salsa208 */
|
||
|
#define crypto_stream_salsa208_BEFORENMBYTES crypto_stream_salsa208_ref_BEFORENMBYTES
|
||
|
/* POTATO crypto_stream_salsa208_ref_BEFORENMBYTES crypto_stream_salsa208_ref crypto_stream_salsa208 */
|
||
|
#define crypto_stream_salsa208_IMPLEMENTATION "crypto_stream/salsa208/ref"
|
||
|
#ifndef crypto_stream_salsa208_ref_VERSION
|
||
|
#define crypto_stream_salsa208_ref_VERSION "-"
|
||
|
#endif
|
||
|
#define crypto_stream_salsa208_VERSION crypto_stream_salsa208_ref_VERSION
|
||
|
|
||
|
#endif
|