diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2019-03-01 17:03:58 +0100 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2019-05-03 20:31:18 +0200 |
commit | 2bc2b8b49ad87376d98591b14403dc3b46e3166b (patch) | |
tree | 48125d1bf8a013325c48cc079d211a5a915ae726 /src/random.h | |
parent | a6d7026a45c915794338c178b7f95d5c1f8e977f (diff) |
Add ChaCha20 encryption option (XOR)
Diffstat (limited to 'src/random.h')
-rw-r--r-- | src/random.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/random.h b/src/random.h index 1c035f87ba..2f9c0f5a36 100644 --- a/src/random.h +++ b/src/random.h @@ -111,7 +111,7 @@ private: if (requires_seed) { RandomSeed(); } - rng.Output(bytebuf, sizeof(bytebuf)); + rng.Keystream(bytebuf, sizeof(bytebuf)); bytebuf_size = sizeof(bytebuf); } |