diff options
author | Adam <Adam@anope.org> | 2012-02-13 00:10:45 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-02-13 00:10:45 -0500 |
commit | 086790d6331357022f4da17c76b26b9fc6e2ad90 (patch) | |
tree | e82d9e0b67cfc5ad0251d8bdcd2490207a875fc6 /modules/encryption/enc_sha256.cpp | |
parent | 1bc8e2ab82db9ce00faaa44887338873a2cd9210 (diff) |
Removed our RNG and just use the systems, it's not very widely used. Also made DNS query ids not random as they don't need to be.
Diffstat (limited to 'modules/encryption/enc_sha256.cpp')
-rw-r--r-- | modules/encryption/enc_sha256.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/encryption/enc_sha256.cpp b/modules/encryption/enc_sha256.cpp index 4e9d50b96..d77cd072d 100644 --- a/modules/encryption/enc_sha256.cpp +++ b/modules/encryption/enc_sha256.cpp @@ -128,7 +128,7 @@ class ESHA256 : public Module void NewRandomIV() { for (int i = 0; i < 8; ++i) - iv[i] = getrandom32(); + iv[i] = static_cast<uint32_t>(rand()); } /* returns the IV as base64-encrypted string */ |