summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-10-30 20:00:13 +0000
committertb <>2024-10-30 20:00:13 +0000
commitfc81f42666e83d9aeb15b1b95195cc9b8e84892e (patch)
tree10fdcd8539b097c39e35057c8045bdf331991215 /src
parent7ec6e26ec26d9376a7e9b83eb15bacb60edf279e (diff)
downloadopenbsd-fc81f42666e83d9aeb15b1b95195cc9b8e84892e.tar.gz
openbsd-fc81f42666e83d9aeb15b1b95195cc9b8e84892e.tar.bz2
openbsd-fc81f42666e83d9aeb15b1b95195cc9b8e84892e.zip
Expand the introductory comment with references to X9.62 and SEC 1
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/ec/ec_convert.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ec/ec_convert.c b/src/lib/libcrypto/ec/ec_convert.c
index e8f8605c10..cebb02b0e7 100644
--- a/src/lib/libcrypto/ec/ec_convert.c
+++ b/src/lib/libcrypto/ec/ec_convert.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_convert.c,v 1.4 2024/10/30 18:21:12 tb Exp $ */ 1/* $OpenBSD: ec_convert.c,v 1.5 2024/10/30 20:00:13 tb Exp $ */
2/* 2/*
3 * Originally written by Bodo Moeller for the OpenSSL project. 3 * Originally written by Bodo Moeller for the OpenSSL project.
4 */ 4 */
@@ -70,6 +70,9 @@
70#include "ec_local.h" 70#include "ec_local.h"
71 71
72/* 72/*
73 * Internal handling of the point conversion octet
74 * (see X9.62, section 4.4.2, SEC 1 section 2.3.3)
75 *
73 * Only the last three bits of the leading octet of a point should be set. 76 * Only the last three bits of the leading octet of a point should be set.
74 * Bits 3 and 2 encode the conversion form for all points except the point 77 * Bits 3 and 2 encode the conversion form for all points except the point
75 * at infinity. In compressed and hybrid form bit 1 indicates if the even 78 * at infinity. In compressed and hybrid form bit 1 indicates if the even