summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2023-02-24 19:49:37 +0200
committerJelle Raaijmakers <jelle@gmta.nl>2023-06-04 21:32:34 +0200
commit490856453d9bfcf282c24db3a40c7e18c66bd852 (patch)
tree3a6e5888a63c871459fb6494a50fe4af55fbdd81 /Userland
parent1b04726c854f59fbd12d1a0eeef0b21d7aa6b832 (diff)
downloadserenity-490856453d9bfcf282c24db3a40c7e18c66bd852.zip
Kernel: Move Random.{h,cpp} code to Security subdirectory
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h b/Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h
index a17bb3514c..5e51fede44 100644
--- a/Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h
+++ b/Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h
@@ -97,7 +97,7 @@ public:
// Encryption, even when decrypting AES-CTR.
// TODO: How to deal with ciphers that take different arguments?
// FIXME: Add back the default intent parameter once clang-11 is the default in GitHub Actions.
- // Once added back, remove the parameter where it's constructed in get_random_bytes in Kernel/Random.h.
+ // Once added back, remove the parameter where it's constructed in get_random_bytes in Kernel/Security/Random.h.
template<typename KeyType, typename... Args>
explicit constexpr CTR(KeyType const& user_key, size_t key_bits, Intent, Args... args)
: Mode<T>(user_key, key_bits, Intent::Encryption, args...)