diff options
author | tb <> | 2024-04-27 07:41:47 +0000 |
---|---|---|
committer | tb <> | 2024-04-27 07:41:47 +0000 |
commit | 5a4fde52db4375162c05f77a21bc9fa7edaebbe0 (patch) | |
tree | 6285c771c6a0b2aaca15ba0be100f9a390c6daf4 /src | |
parent | 36e09afd712071f21f4058ed358c212995507b6b (diff) | |
download | openbsd-5a4fde52db4375162c05f77a21bc9fa7edaebbe0.tar.gz openbsd-5a4fde52db4375162c05f77a21bc9fa7edaebbe0.tar.bz2 openbsd-5a4fde52db4375162c05f77a21bc9fa7edaebbe0.zip |
Tweak start of DESCRIPTION of EC_GROUP_new()
Complete precision will lead to complete confusion, however outright lies
are also bad.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/man/EC_GROUP_new.3 | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/lib/libcrypto/man/EC_GROUP_new.3 b/src/lib/libcrypto/man/EC_GROUP_new.3 index d0e95c9858..e6cfb9a73b 100644 --- a/src/lib/libcrypto/man/EC_GROUP_new.3 +++ b/src/lib/libcrypto/man/EC_GROUP_new.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: EC_GROUP_new.3,v 1.16 2024/04/26 14:23:03 tb Exp $ | 1 | .\" $OpenBSD: EC_GROUP_new.3,v 1.17 2024/04/27 07:41:47 tb Exp $ |
2 | .\" OpenSSL 6328d367 Sat Jul 4 21:58:30 2020 +0200 | 2 | .\" OpenSSL 6328d367 Sat Jul 4 21:58:30 2020 +0200 |
3 | .\" | 3 | .\" |
4 | .\" This file was written by Matt Caswell <matt@openssl.org>. | 4 | .\" This file was written by Matt Caswell <matt@openssl.org>. |
@@ -48,7 +48,7 @@ | |||
48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
50 | .\" | 50 | .\" |
51 | .Dd $Mdocdate: April 26 2024 $ | 51 | .Dd $Mdocdate: April 27 2024 $ |
52 | .Dt EC_GROUP_NEW 3 | 52 | .Dt EC_GROUP_NEW 3 |
53 | .Os | 53 | .Os |
54 | .Sh NAME | 54 | .Sh NAME |
@@ -138,8 +138,13 @@ | |||
138 | .Fc | 138 | .Fc |
139 | .Sh DESCRIPTION | 139 | .Sh DESCRIPTION |
140 | The EC library provides functions for performing operations on | 140 | The EC library provides functions for performing operations on |
141 | elliptic curves over finite fields. | 141 | elliptic curves in Weierstrass form. |
142 | In general, an elliptic curve satisfies an equation of the form: | 142 | Such curves are defined over the prime field of order |
143 | .Fa p | ||
144 | and satisfy the Weierstrass equation with coefficients | ||
145 | .Fa a | ||
146 | and | ||
147 | .Fa b | ||
143 | .Pp | 148 | .Pp |
144 | .Dl y^2 = x^3 + ax + b | 149 | .Dl y^2 = x^3 + ax + b |
145 | .Pp | 150 | .Pp |