summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man/EC_KEY_new.3
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/man/EC_KEY_new.3')
-rw-r--r--src/lib/libcrypto/man/EC_KEY_new.317
1 files changed, 13 insertions, 4 deletions
diff --git a/src/lib/libcrypto/man/EC_KEY_new.3 b/src/lib/libcrypto/man/EC_KEY_new.3
index fecb718a2b..742be773ee 100644
--- a/src/lib/libcrypto/man/EC_KEY_new.3
+++ b/src/lib/libcrypto/man/EC_KEY_new.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: EC_KEY_new.3,v 1.7 2016/12/06 14:54:55 schwarze Exp $ 1.\" $OpenBSD: EC_KEY_new.3,v 1.8 2016/12/11 14:22:43 schwarze Exp $
2.\" OpenSSL d900a015 Oct 8 14:40:42 2015 +0200 2.\" OpenSSL d900a015 Oct 8 14:40:42 2015 +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: December 6 2016 $ 51.Dd $Mdocdate: December 11 2016 $
52.Dt EC_KEY_NEW 3 52.Dt EC_KEY_NEW 3
53.Os 53.Os
54.Sh NAME 54.Sh NAME
@@ -221,6 +221,15 @@
221An 221An
222.Vt EC_KEY 222.Vt EC_KEY
223represents a public key and (optionally) an associated private key. 223represents a public key and (optionally) an associated private key.
224The public key is a point on a curve represented by an
225.Vt EC_POINT ,
226see
227.Xr EC_POINT_new 3 .
228The private key is simply a
229.Vt BIGNUM ,
230see
231.Xr BN_new 3 .
232.Pp
224A new 233A new
225.Vt EC_KEY 234.Vt EC_KEY
226(with no associated curve) can be constructed by calling 235(with no associated curve) can be constructed by calling
@@ -510,9 +519,9 @@ returns the point_conversion_form for the
510.Vt EC_KEY . 519.Vt EC_KEY .
511.Sh SEE ALSO 520.Sh SEE ALSO
512.Xr d2i_ECPKParameters 3 , 521.Xr d2i_ECPKParameters 3 ,
513.Xr ec 3 ,
514.Xr EC_GFp_simple_method 3 , 522.Xr EC_GFp_simple_method 3 ,
515.Xr EC_GROUP_copy 3 , 523.Xr EC_GROUP_copy 3 ,
516.Xr EC_GROUP_new 3 , 524.Xr EC_GROUP_new 3 ,
517.Xr EC_POINT_add 3 , 525.Xr EC_POINT_add 3 ,
518.Xr EC_POINT_new 3 526.Xr EC_POINT_new 3 ,
527.Xr ECDSA_SIG_new 3