This commit is contained in:
Jeff Becker 2018-07-24 17:13:09 +10:00
parent 8553c206cb
commit 230dd86906

View File

@ -11,7 +11,7 @@ namespace llarp
static bool static bool
xchacha20(llarp_buffer_t buff, const byte_t *k, const byte_t *n) xchacha20(llarp_buffer_t buff, const byte_t *k, const byte_t *n)
{ {
return crypto_stream_chacha20_xor(buff.base, buff.base, buff.sz, n, k) return crypto_stream_xchacha20_xor(buff.base, buff.base, buff.sz, n, k)
== 0; == 0;
} }