From a6b89b17f30f5ae7fe0e67a4dc1b0d238756051a Mon Sep 17 00:00:00 2001 From: vaxtalastus-web Date: Tue, 18 Nov 2025 13:51:10 +1100 Subject: [PATCH 1/2] fix incorrectly saying base64 instead of hex --- src/content/docs/api-reference/serde.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/api-reference/serde.md b/src/content/docs/api-reference/serde.md index 6d9c530..c228979 100644 --- a/src/content/docs/api-reference/serde.md +++ b/src/content/docs/api-reference/serde.md @@ -125,7 +125,7 @@ See [`HashAlgorithm`] for a list of supported algorithms. ### hmac Hashes the given message using HMAC with the given secret -and algorithm, returning the hash as a base64 string. +and algorithm, returning the hash as a hex string. See [`HashAlgorithm`] for a list of supported algorithms. From 1e56da58faabc02579cb00615eceb41d1f911528 Mon Sep 17 00:00:00 2001 From: vaxtalastus-web Date: Tue, 18 Nov 2025 14:00:33 +1100 Subject: [PATCH 2/2] same change as last commit but fix for another instance of saying it --- src/content/docs/api-reference/serde.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/api-reference/serde.md b/src/content/docs/api-reference/serde.md index c228979..02e411c 100644 --- a/src/content/docs/api-reference/serde.md +++ b/src/content/docs/api-reference/serde.md @@ -139,7 +139,7 @@ See [`HashAlgorithm`] for a list of supported algorithms. #### Returns -- The hash as a base64 string +- The hash as a hex string ---