diff --git a/Userland/Libraries/LibWeb/Crypto/SubtleCrypto.cpp b/Userland/Libraries/LibWeb/Crypto/SubtleCrypto.cpp index 7f726ba0bc..edc2ddef39 100644 --- a/Userland/Libraries/LibWeb/Crypto/SubtleCrypto.cpp +++ b/Userland/Libraries/LibWeb/Crypto/SubtleCrypto.cpp @@ -304,7 +304,7 @@ SubtleCrypto::SupportedAlgorithmsMap SubtleCrypto::supported_algorithms() // https://w3c.github.io/webcrypto/#algorithm-conventions // https://w3c.github.io/webcrypto/#sha - define_an_algorithm("digest"_string, "SHA1"_string, ""_string); + define_an_algorithm("digest"_string, "SHA-1"_string, ""_string); define_an_algorithm("digest"_string, "SHA-256"_string, ""_string); define_an_algorithm("digest"_string, "SHA-384"_string, ""_string); define_an_algorithm("digest"_string, "SHA-512"_string, ""_string);