summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCrypto/Authentication/GHash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibCrypto/Authentication/GHash.cpp')
-rw-r--r--Userland/Libraries/LibCrypto/Authentication/GHash.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibCrypto/Authentication/GHash.cpp b/Userland/Libraries/LibCrypto/Authentication/GHash.cpp
index de06e63087..396da9b53f 100644
--- a/Userland/Libraries/LibCrypto/Authentication/GHash.cpp
+++ b/Userland/Libraries/LibCrypto/Authentication/GHash.cpp
@@ -12,12 +12,12 @@
namespace {
-static u32 to_u32(const u8* b)
+static u32 to_u32(u8 const* b)
{
return AK::convert_between_host_and_big_endian(ByteReader::load32(b));
}
-static void to_u8s(u8* b, const u32* w)
+static void to_u8s(u8* b, u32 const* w)
{
for (auto i = 0; i < 4; ++i) {
ByteReader::store(b + i * 4, AK::convert_between_host_and_big_endian(w[i]));