diff --git a/Libraries/LibCrypto/PK/RSA.h b/Libraries/LibCrypto/PK/RSA.h index 81e069225f8..11b127aed6d 100644 --- a/Libraries/LibCrypto/PK/RSA.h +++ b/Libraries/LibCrypto/PK/RSA.h @@ -160,7 +160,7 @@ public: using KeyPairType = RSAKeyPair; static ErrorOr parse_rsa_key(ReadonlyBytes der, bool is_private, Vector current_scope); - static ErrorOr generate_key_pair(size_t bits = 256, IntegerType e = 65537); + static ErrorOr generate_key_pair(size_t bits, IntegerType e = 65537); RSA(KeyPairType const& pair) : PKSystem, RSAPublicKey>(pair.public_key, pair.private_key)