mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-03 11:44:09 +00:00
14 lines
419 B
C
14 lines
419 B
C
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// output, outlen, nonce, key (256-bit / 32-byte)
|
|
extern int zt_salsa2012_amd64_xmm6(unsigned char *,unsigned long long,const unsigned char *,const unsigned char *);
|
|
|
|
// ciphertext, message, mlen, nonce, key
|
|
extern int zt_salsa2012_amd64_xmm6_xor(unsigned char *,const unsigned char *,unsigned long long,const unsigned char *,const unsigned char *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|