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