salsa2012.h 340 B

12345678910111213141516
  1. #ifndef ZT_X64_SALSA2012_ASM
  2. #define ZT_X64_SALSA2012_ASM
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. // Generates Salsa20/12 key stream
  7. // output, outlen, nonce, key (256-bit / 32-byte)
  8. extern int zt_salsa2012_amd64_xmm6(unsigned char *, unsigned long long, const unsigned char *, const unsigned char *);
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif