From 2706fe9f79d5acf1d4b1613957a92e0dd725bd98 Mon Sep 17 00:00:00 2001 From: Paul Miller Date: Thu, 14 Dec 2023 13:20:40 +0000 Subject: [PATCH] README: mention secp256r1. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index eed680c..200a0ab 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,8 @@ const privHex = '46c930bc7bb4db7f55da20798697421b98c4175a52c630294d75a84b9c12623 const pub2 = secp256k1.getPublicKey(privHex); ``` +We support P256 (secp256r1), P384 (secp384r1), P521 (secp521r1). + #### ECDSA public key recovery & extra entropy ```ts