mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-19 13:07:55 +00:00
12 lines
273 B
C
12 lines
273 B
C
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Generates Salsa20/12 key stream
|
|
// 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 *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|