From 6968dd4b297f970335b07def33f1c7e9d59e3d2f Mon Sep 17 00:00:00 2001 From: "Seungmin.Ryu" Date: Fri, 18 Oct 2024 14:33:07 +0900 Subject: [PATCH] Fixed typo P-256 to P-256K in es256k constant description --- lib/src/jwa.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/jwa.dart b/lib/src/jwa.dart index 0a278e9..73de68d 100644 --- a/lib/src/jwa.dart +++ b/lib/src/jwa.dart @@ -121,7 +121,7 @@ class JsonWebAlgorithm { static const es512 = JsonWebAlgorithm('ES512', type: 'EC', use: 'sig', curve: 'P-521'); - /// ECDSA using P-256 and SHA-256 + /// ECDSA using P-256K and SHA-256 static const es256k = JsonWebAlgorithm('ES256K', type: 'EC', use: 'sig', curve: 'P-256K');