1ECPKPARAMETERS_PRINT(3) OpenSSL ECPKPARAMETERS_PRINT(3)
2
3
4
6 ECPKParameters_print, ECPKParameters_print_fp - Functions for decoding
7 and encoding ASN1 representations of elliptic curve entities
8
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
16 The ECPKParameters represent the public parameters for an EC_GROUP
17 structure, which represents a curve.
18
19 The ECPKParameters_print() and ECPKParameters_print_fp() functions
20 print a human-readable output of the public parameters of the EC_GROUP
21 to bp or fp. The output lines are indented by off spaces.
22
24 ECPKParameters_print() and ECPKParameters_print_fp() return 1 for
25 success and 0 if an error occurs.
26
28 crypto(7), EC_GROUP_new(3), EC_GROUP_copy(3), EC_POINT_new(3),
29 EC_POINT_add(3), EC_KEY_new(3), EC_GFp_simple_method(3),
30
32 Copyright 2013-2017 The OpenSSL Project Authors. All Rights Reserved.
33
34 Licensed under the OpenSSL license (the "License"). You may not use
35 this file except in compliance with the License. You can obtain a copy
36 in the file LICENSE in the source distribution or at
37 <https://www.openssl.org/source/license.html>.
38
39
40
411.1.1k 2021-03-26 ECPKPARAMETERS_PRINT(3)