diff --git a/Userland/Libraries/LibCrypto/Hash/PBKDF2.h b/Userland/Libraries/LibCrypto/Hash/PBKDF2.h index ae940eb31a..766ee1728e 100644 --- a/Userland/Libraries/LibCrypto/Hash/PBKDF2.h +++ b/Userland/Libraries/LibCrypto/Hash/PBKDF2.h @@ -15,7 +15,7 @@ namespace Crypto::Hash { class PBKDF2 { public: template - static ErrorOr derive_key(ReadonlyBytes password, ReadonlyBytes salt, u32 iterations, u32 key_length_bytes) + static ErrorOr derive_key(ReadonlyBytes password, ReadonlyBytes salt, u32 iterations, u32 key_length_bytes) requires requires(PRF t) { t.digest_size(); }