From 4704147717db849d75a4c83b246c93fc0b20f4d9 Mon Sep 17 00:00:00 2001 From: Xiaokang Qian Date: Wed, 12 Apr 2023 06:07:23 +0000 Subject: [PATCH 1/4] Update SEC1 link in ecdh.c Signed-off-by: Xiaokang Qian --- library/ecdh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ecdh.c b/library/ecdh.c index b529af59c..58ef881f0 100644 --- a/library/ecdh.c +++ b/library/ecdh.c @@ -20,7 +20,7 @@ /* * References: * - * SEC1 http://www.secg.org/index.php?action=secg,docs_secg + * SEC1 https://www.secg.org/sec1-v2.pdf * RFC 4492 */ From 637a2fe62c381ebb4778eb71a05cef8429ceea7d Mon Sep 17 00:00:00 2001 From: Xiaokang Qian Date: Wed, 12 Apr 2023 06:07:51 +0000 Subject: [PATCH 2/4] Update SEC1 link in ecdsa.c Signed-off-by: Xiaokang Qian --- library/ecdsa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ecdsa.c b/library/ecdsa.c index eb3c30319..40c97ec12 100644 --- a/library/ecdsa.c +++ b/library/ecdsa.c @@ -20,7 +20,7 @@ /* * References: * - * SEC1 http://www.secg.org/index.php?action=secg,docs_secg + * SEC1 https://www.secg.org/sec1-v2.pdf */ #include "common.h" From 50fe36317a3551fe7fce6562ccffdf7abeddb8d1 Mon Sep 17 00:00:00 2001 From: Xiaokang Qian Date: Wed, 12 Apr 2023 06:08:45 +0000 Subject: [PATCH 3/4] Update links in ecp.c Signed-off-by: Xiaokang Qian --- library/ecp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/library/ecp.c b/library/ecp.c index c8dd7f008..9d2d72cca 100644 --- a/library/ecp.c +++ b/library/ecp.c @@ -24,9 +24,11 @@ * GECC = Guide to Elliptic Curve Cryptography - Hankerson, Menezes, Vanstone * FIPS 186-3 http://csrc.nist.gov/publications/fips/fips186-3/fips_186-3.pdf * RFC 4492 for the related TLS structures and constants + * - https://www.rfc-editor.org/rfc/rfc4492 * RFC 7748 for the Curve448 and Curve25519 curve definitions + * - https://www.rfc-editor.org/rfc/rfc7748 * - * [Curve25519] http://cr.yp.to/ecdh/curve25519-20060209.pdf + * [Curve25519] https://cr.yp.to/ecdh/curve25519-20060209.pdf * * [2] CORON, Jean-S'ebastien. Resistance against differential power analysis * for elliptic curve cryptosystems. In : Cryptographic Hardware and From b92a2f6e7a84f26e75e2edbdbd4f2e8285366afc Mon Sep 17 00:00:00 2001 From: Xiaokang Qian Date: Wed, 19 Apr 2023 02:59:15 +0000 Subject: [PATCH 4/4] Remove trailing whitespace from ecdsa.c Signed-off-by: Xiaokang Qian --- library/ecdsa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ecdsa.c b/library/ecdsa.c index 40c97ec12..355bf89fd 100644 --- a/library/ecdsa.c +++ b/library/ecdsa.c @@ -20,7 +20,7 @@ /* * References: * - * SEC1 https://www.secg.org/sec1-v2.pdf + * SEC1 https://www.secg.org/sec1-v2.pdf */ #include "common.h"