From bb02761f046f89572b6508a23e5806a643f3e72d Mon Sep 17 00:00:00 2001 From: swrup Date: Sat, 29 Nov 2025 17:47:16 +0100 Subject: [PATCH] --- src/crypto.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto.ml b/src/crypto.ml index 4c835b1b..249d051e 100644 --- a/src/crypto.ml +++ b/src/crypto.ml @@ -130,7 +130,7 @@ module RsaPrivateKey = struct Ok (of_octets s) let to_b32 t = B32.encode (to_octets t) - let jsont = Jsont.of_of_string ~kind:"EddsaPrivateKey" of_b32 ~enc:to_b32 + let jsont = Jsont.of_of_string ~kind:"RsaPrivateKey" of_b32 ~enc:to_b32 end module RsaSignature : sig