Deleted Added
full compact
ecparam.c (238405) ecparam.c (264278)
1/* apps/ecparam.c */
2/*
3 * Written by Nils Larsch for the OpenSSL project.
4 */
5/* ====================================================================
6 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 91 unchanged lines hidden (view full) ---

100 * -conv_form arg - specifies the point conversion form
101 * - possible values: compressed
102 * uncompressed (default)
103 * hybrid
104 * -param_enc arg - specifies the way the ec parameters are encoded
105 * in the asn1 der encoding
106 * possible values: named_curve (default)
107 * explicit
1/* apps/ecparam.c */
2/*
3 * Written by Nils Larsch for the OpenSSL project.
4 */
5/* ====================================================================
6 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 91 unchanged lines hidden (view full) ---

100 * -conv_form arg - specifies the point conversion form
101 * - possible values: compressed
102 * uncompressed (default)
103 * hybrid
104 * -param_enc arg - specifies the way the ec parameters are encoded
105 * in the asn1 der encoding
106 * possible values: named_curve (default)
107 * explicit
108 * -no_seed - if 'explicit' parameters are choosen do not use the seed
108 * -no_seed - if 'explicit' parameters are chosen do not use the seed
109 * -genkey - generate ec key
110 * -rand file - files to use for random number input
111 * -engine e - use engine e, possibly a hardware device
112 */
113
114
115static int ecparam_print_var(BIO *,BIGNUM *,const char *,int,unsigned char *);
116

--- 164 unchanged lines hidden (view full) ---

281 " the ec parameters are encoded\n");
282 BIO_printf(bio_err, " in the asn1 der "
283 "encoding\n");
284 BIO_printf(bio_err, " possible values:"
285 " named_curve (default)\n");
286 BIO_printf(bio_err, " "
287 " explicit\n");
288 BIO_printf(bio_err, " -no_seed if 'explicit'"
109 * -genkey - generate ec key
110 * -rand file - files to use for random number input
111 * -engine e - use engine e, possibly a hardware device
112 */
113
114
115static int ecparam_print_var(BIO *,BIGNUM *,const char *,int,unsigned char *);
116

--- 164 unchanged lines hidden (view full) ---

281 " the ec parameters are encoded\n");
282 BIO_printf(bio_err, " in the asn1 der "
283 "encoding\n");
284 BIO_printf(bio_err, " possible values:"
285 " named_curve (default)\n");
286 BIO_printf(bio_err, " "
287 " explicit\n");
288 BIO_printf(bio_err, " -no_seed if 'explicit'"
289 " parameters are choosen do not"
289 " parameters are chosen do not"
290 " use the seed\n");
291 BIO_printf(bio_err, " -genkey generate ec"
292 " key\n");
293 BIO_printf(bio_err, " -rand file files to use for"
294 " random number input\n");
295 BIO_printf(bio_err, " -engine e use engine e, "
296 "possibly a hardware device\n");
297 goto end;

--- 434 unchanged lines hidden ---
290 " use the seed\n");
291 BIO_printf(bio_err, " -genkey generate ec"
292 " key\n");
293 BIO_printf(bio_err, " -rand file files to use for"
294 " random number input\n");
295 BIO_printf(bio_err, " -engine e use engine e, "
296 "possibly a hardware device\n");
297 goto end;

--- 434 unchanged lines hidden ---