1=pod
2
3=head1 NAME
4
5ECPKParameters_print, ECPKParameters_print_fp - Functions for decoding and
6encoding 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
17The ECPKParameters represent the public parameters for an
18B<EC_GROUP> structure, which represents a curve.
19
20The ECPKParameters_print() and ECPKParameters_print_fp() functions print
21a human-readable output of the public parameters of the EC_GROUP to B<bp>
22or B<fp>. The output lines are indented by B<off> spaces.
23
24=head1 RETURN VALUES
25
26ECPKParameters_print() and ECPKParameters_print_fp()
27return 1 for success and 0 if an error occurs.
28
29=head1 SEE ALSO
30
31L<crypto(7)>, L<EC_GROUP_new(3)>, L<EC_GROUP_copy(3)>,
32L<EC_POINT_new(3)>, L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
33L<EC_GFp_simple_method(3)>,
34
35=head1 COPYRIGHT
36
37Copyright 2013-2017 The OpenSSL Project Authors. All Rights Reserved.
38
39Licensed under the OpenSSL license (the "License").  You may not use
40this file except in compliance with the License.  You can obtain a copy
41in the file LICENSE in the source distribution or at
42L<https://www.openssl.org/source/license.html>.
43
44=cut
45