]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/ECPKParameters_print.pod
Move EC_METHOD to internal-only
[thirdparty/openssl.git] / doc / man3 / ECPKParameters_print.pod
CommitLineData
4692340e
RS
1=pod
2
3=head1 NAME
4
0517ffc4
F
5ECPKParameters_print, ECPKParameters_print_fp - Functions for decoding and
6encoding ASN1 representations of elliptic curve entities
4692340e
RS
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
9e183d22 31L<crypto(7)>, L<EC_GROUP_new(3)>, L<EC_GROUP_copy(3)>,
4692340e
RS
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
9e183d22 37Copyright 2013-2017 The OpenSSL Project Authors. All Rights Reserved.
4692340e 38
4746f25a 39Licensed under the Apache License 2.0 (the "License"). You may not use
4692340e
RS
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