More style fixes to Curve448 code based on review feedback
[openssl.git] / crypto / ec / eck_prn.c
1 /*
2  * Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
3  * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4  *
5  * Licensed under the OpenSSL license (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  */
10
11 #include <stdio.h>
12 #include "internal/cryptlib.h"
13 #include <openssl/evp.h>
14 #include <openssl/ec.h>
15 #include <openssl/bn.h>
16
17 #ifndef OPENSSL_NO_STDIO
18 int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off)
19 {
20     BIO *b;
21     int ret;
22
23     if ((b = BIO_new(BIO_s_file())) == NULL) {
24         ECerr(EC_F_ECPKPARAMETERS_PRINT_FP, ERR_R_BUF_LIB);
25         return 0;
26     }
27     BIO_set_fp(b, fp, BIO_NOCLOSE);
28     ret = ECPKParameters_print(b, x, off);
29     BIO_free(b);
30     return ret;
31 }
32
33 int EC_KEY_print_fp(FILE *fp, const EC_KEY *x, int off)
34 {
35     BIO *b;
36     int ret;
37
38     if ((b = BIO_new(BIO_s_file())) == NULL) {
39         ECerr(EC_F_EC_KEY_PRINT_FP, ERR_R_BIO_LIB);
40         return 0;
41     }
42     BIO_set_fp(b, fp, BIO_NOCLOSE);
43     ret = EC_KEY_print(b, x, off);
44     BIO_free(b);
45     return ret;
46 }
47
48 int ECParameters_print_fp(FILE *fp, const EC_KEY *x)
49 {
50     BIO *b;
51     int ret;
52
53     if ((b = BIO_new(BIO_s_file())) == NULL) {
54         ECerr(EC_F_ECPARAMETERS_PRINT_FP, ERR_R_BIO_LIB);
55         return 0;
56     }
57     BIO_set_fp(b, fp, BIO_NOCLOSE);
58     ret = ECParameters_print(b, x);
59     BIO_free(b);
60     return ret;
61 }
62 #endif
63
64 static int print_bin(BIO *fp, const char *str, const unsigned char *num,
65                      size_t len, int off);
66
67 int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off)
68 {
69     int ret = 0, reason = ERR_R_BIO_LIB;
70     BN_CTX *ctx = NULL;
71     const EC_POINT *point = NULL;
72     BIGNUM *p = NULL, *a = NULL, *b = NULL, *gen = NULL;
73     const BIGNUM *order = NULL, *cofactor = NULL;
74     const unsigned char *seed;
75     size_t seed_len = 0;
76
77     static const char *gen_compressed = "Generator (compressed):";
78     static const char *gen_uncompressed = "Generator (uncompressed):";
79     static const char *gen_hybrid = "Generator (hybrid):";
80
81     if (!x) {
82         reason = ERR_R_PASSED_NULL_PARAMETER;
83         goto err;
84     }
85
86     ctx = BN_CTX_new();
87     if (ctx == NULL) {
88         reason = ERR_R_MALLOC_FAILURE;
89         goto err;
90     }
91
92     if (EC_GROUP_get_asn1_flag(x)) {
93         /* the curve parameter are given by an asn1 OID */
94         int nid;
95         const char *nname;
96
97         if (!BIO_indent(bp, off, 128))
98             goto err;
99
100         nid = EC_GROUP_get_curve_name(x);
101         if (nid == 0)
102             goto err;
103         if (BIO_printf(bp, "ASN1 OID: %s", OBJ_nid2sn(nid)) <= 0)
104             goto err;
105         if (BIO_printf(bp, "\n") <= 0)
106             goto err;
107         nname = EC_curve_nid2nist(nid);
108         if (nname) {
109             if (!BIO_indent(bp, off, 128))
110                 goto err;
111             if (BIO_printf(bp, "NIST CURVE: %s\n", nname) <= 0)
112                 goto err;
113         }
114     } else {
115         /* explicit parameters */
116         int is_char_two = 0;
117         point_conversion_form_t form;
118         int tmp_nid = EC_METHOD_get_field_type(EC_GROUP_method_of(x));
119
120         if (tmp_nid == NID_X9_62_characteristic_two_field)
121             is_char_two = 1;
122
123         if ((p = BN_new()) == NULL || (a = BN_new()) == NULL ||
124             (b = BN_new()) == NULL) {
125             reason = ERR_R_MALLOC_FAILURE;
126             goto err;
127         }
128 #ifndef OPENSSL_NO_EC2M
129         if (is_char_two) {
130             if (!EC_GROUP_get_curve_GF2m(x, p, a, b, ctx)) {
131                 reason = ERR_R_EC_LIB;
132                 goto err;
133             }
134         } else                  /* prime field */
135 #endif
136         {
137             if (!EC_GROUP_get_curve_GFp(x, p, a, b, ctx)) {
138                 reason = ERR_R_EC_LIB;
139                 goto err;
140             }
141         }
142
143         if ((point = EC_GROUP_get0_generator(x)) == NULL) {
144             reason = ERR_R_EC_LIB;
145             goto err;
146         }
147         order = EC_GROUP_get0_order(x);
148         cofactor = EC_GROUP_get0_cofactor(x);
149         if (order == NULL) {
150             reason = ERR_R_EC_LIB;
151             goto err;
152         }
153
154         form = EC_GROUP_get_point_conversion_form(x);
155
156         if ((gen = EC_POINT_point2bn(x, point, form, NULL, ctx)) == NULL) {
157             reason = ERR_R_EC_LIB;
158             goto err;
159         }
160
161         if ((seed = EC_GROUP_get0_seed(x)) != NULL)
162             seed_len = EC_GROUP_get_seed_len(x);
163
164         if (!BIO_indent(bp, off, 128))
165             goto err;
166
167         /* print the 'short name' of the field type */
168         if (BIO_printf(bp, "Field Type: %s\n", OBJ_nid2sn(tmp_nid))
169             <= 0)
170             goto err;
171
172         if (is_char_two) {
173             /* print the 'short name' of the base type OID */
174             int basis_type = EC_GROUP_get_basis_type(x);
175             if (basis_type == 0)
176                 goto err;
177
178             if (!BIO_indent(bp, off, 128))
179                 goto err;
180
181             if (BIO_printf(bp, "Basis Type: %s\n",
182                            OBJ_nid2sn(basis_type)) <= 0)
183                 goto err;
184
185             /* print the polynomial */
186             if ((p != NULL) && !ASN1_bn_print(bp, "Polynomial:", p, NULL,
187                                               off))
188                 goto err;
189         } else {
190             if ((p != NULL) && !ASN1_bn_print(bp, "Prime:", p, NULL, off))
191                 goto err;
192         }
193         if ((a != NULL) && !ASN1_bn_print(bp, "A:   ", a, NULL, off))
194             goto err;
195         if ((b != NULL) && !ASN1_bn_print(bp, "B:   ", b, NULL, off))
196             goto err;
197         if (form == POINT_CONVERSION_COMPRESSED) {
198             if ((gen != NULL) && !ASN1_bn_print(bp, gen_compressed, gen,
199                                                 NULL, off))
200                 goto err;
201         } else if (form == POINT_CONVERSION_UNCOMPRESSED) {
202             if ((gen != NULL) && !ASN1_bn_print(bp, gen_uncompressed, gen,
203                                                 NULL, off))
204                 goto err;
205         } else {                /* form == POINT_CONVERSION_HYBRID */
206
207             if ((gen != NULL) && !ASN1_bn_print(bp, gen_hybrid, gen,
208                                                 NULL, off))
209                 goto err;
210         }
211         if ((order != NULL) && !ASN1_bn_print(bp, "Order: ", order,
212                                               NULL, off))
213             goto err;
214         if ((cofactor != NULL) && !ASN1_bn_print(bp, "Cofactor: ", cofactor,
215                                                  NULL, off))
216             goto err;
217         if (seed && !print_bin(bp, "Seed:", seed, seed_len, off))
218             goto err;
219     }
220     ret = 1;
221  err:
222     if (!ret)
223         ECerr(EC_F_ECPKPARAMETERS_PRINT, reason);
224     BN_free(p);
225     BN_free(a);
226     BN_free(b);
227     BN_free(gen);
228     BN_CTX_free(ctx);
229     return ret;
230 }
231
232 static int print_bin(BIO *fp, const char *name, const unsigned char *buf,
233                      size_t len, int off)
234 {
235     size_t i;
236     char str[128 + 1 + 4];
237
238     if (buf == NULL)
239         return 1;
240     if (off > 0) {
241         if (off > 128)
242             off = 128;
243         memset(str, ' ', off);
244         if (BIO_write(fp, str, off) <= 0)
245             return 0;
246     } else {
247         off = 0;
248     }
249
250     if (BIO_printf(fp, "%s", name) <= 0)
251         return 0;
252
253     for (i = 0; i < len; i++) {
254         if ((i % 15) == 0) {
255             str[0] = '\n';
256             memset(&(str[1]), ' ', off + 4);
257             if (BIO_write(fp, str, off + 1 + 4) <= 0)
258                 return 0;
259         }
260         if (BIO_printf(fp, "%02x%s", buf[i], ((i + 1) == len) ? "" : ":") <=
261             0)
262             return 0;
263     }
264     if (BIO_write(fp, "\n", 1) <= 0)
265         return 0;
266
267     return 1;
268 }