crypto_stream.h 767 B

123456789101112131415161718
  1. #ifndef crypto_stream_H
  2. #define crypto_stream_H
  3. #include "crypto_stream_xsalsa20.h"
  4. #define crypto_stream crypto_stream_xsalsa20
  5. #define crypto_stream_xor crypto_stream_xsalsa20_xor
  6. #define crypto_stream_beforenm crypto_stream_xsalsa20_beforenm
  7. #define crypto_stream_afternm crypto_stream_xsalsa20_afternm
  8. #define crypto_stream_xor_afternm crypto_stream_xsalsa20_xor_afternm
  9. #define crypto_stream_KEYBYTES crypto_stream_xsalsa20_KEYBYTES
  10. #define crypto_stream_NONCEBYTES crypto_stream_xsalsa20_NONCEBYTES
  11. #define crypto_stream_BEFORENMBYTES crypto_stream_xsalsa20_BEFORENMBYTES
  12. #define crypto_stream_PRIMITIVE "xsalsa20"
  13. #define crypto_stream_IMPLEMENTATION crypto_stream_xsalsa20_IMPLEMENTATION
  14. #define crypto_stream_VERSION crypto_stream_xsalsa20_VERSION
  15. #endif