From 0f2629ab6059f136d7d09f1b49c14f88b16104f2 Mon Sep 17 00:00:00 2001 From: cairo Date: Wed, 25 Sep 2024 07:46:14 -0700 Subject: [PATCH] Fix typo --- test/utils/cryptography/P256.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/cryptography/P256.test.js b/test/utils/cryptography/P256.test.js index f8735420d1..e03f519aac 100644 --- a/test/utils/cryptography/P256.test.js +++ b/test/utils/cryptography/P256.test.js @@ -132,7 +132,7 @@ describe('P256', function () { // * private = N - 2 (P = -2G) // * private = N - 1 (P = -G) for (const privateKey of [1n, 2n, 3n, -3n, -2n, -1n]) { - it(`unsuported case: P = ${privateKey} * G`, async function () { + it(`unsupported case: P = ${privateKey} * G`, async function () { const { messageHash, signature, publicKey } = prepareSignature( privateKey < 0 ? privateKey + secp256r1.CURVE.n : privateKey, );