From 8fa8117fa1dbf2e93de926aa10e54f72a05bc058 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Wed, 9 Apr 2025 18:28:50 +0400 Subject: [PATCH] Update signing.ts --- backend/src/lib/crypto/sign/signing.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/lib/crypto/sign/signing.ts b/backend/src/lib/crypto/sign/signing.ts index 2cbebb6ef..9be62c6e6 100644 --- a/backend/src/lib/crypto/sign/signing.ts +++ b/backend/src/lib/crypto/sign/signing.ts @@ -134,7 +134,7 @@ export const signingService = (algorithm: AsymmetricKeyAlgorithm): TAsymmetricSi if (!result.stdout) { throw new Error( - "No signature was created. Make sure you are using an appropiate signing algorithm that uses the same hashing algorithm as the one used to create the digest." + "No signature was created. Make sure you are using an appropriate signing algorithm that uses the same hashing algorithm as the one used to create the digest." ); }