Add --with-rand-seed
[openssl.git] / doc / man3 / ECPKParameters_print.pod
1 =pod
2
3 =head1 NAME
4
5 ECPKParameters_print, ECPKParameters_print_fp - Functions for decoding and
6 encoding ASN1 representations of elliptic curve entities
7
8 =head1 SYNOPSIS
9
10  #include <openssl/ec.h>
11
12  int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off);
13  int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off);
14
15 =head1 DESCRIPTION
16
17 The ECPKParameters represent the public parameters for an
18 B<EC_GROUP> structure, which represents a curve.
19
20 The ECPKParameters_print() and ECPKParameters_print_fp() functions print
21 a human-readable output of the public parameters of the EC_GROUP to B<bp>
22 or B<fp>. The output lines are indented by B<off> spaces.
23
24 =head1 RETURN VALUES
25
26 ECPKParameters_print() and ECPKParameters_print_fp()
27 return 1 for success and 0 if an error occurs.
28
29 =head1 SEE ALSO
30
31 L<crypto(7)>, L<EC_GROUP_new(3)>, L<EC_GROUP_copy(3)>,
32 L<EC_POINT_new(3)>, L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
33 L<EC_GFp_simple_method(3)>,
34
35 =head1 COPYRIGHT
36
37 Copyright 2013-2017 The OpenSSL Project Authors. All Rights Reserved.
38
39 Licensed under the OpenSSL license (the "License").  You may not use
40 this file except in compliance with the License.  You can obtain a copy
41 in the file LICENSE in the source distribution or at
42 L<https://www.openssl.org/source/license.html>.
43
44 =cut