HomeSort by relevance Sort by last modified time
    Searched full:bio_err (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/openssl/apps/
pkcs8.c 93 if (bio_err == NULL) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
95 if (!load_config(bio_err, NULL))
114 BIO_printf(bio_err,
130 BIO_printf(bio_err,
210 BIO_printf(bio_err, "Usage pkcs8 [options]\n");
211 BIO_printf(bio_err, "where options are\n");
212 BIO_printf(bio_err, "-in file input file\n");
213 BIO_printf(bio_err, "-inform X input format (DER or PEM)\n");
214 BIO_printf(bio_err, "-passin arg input file pass phrase source\n")
    [all...]
pkcs12.c 134 if (bio_err == NULL ) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
136 if (!load_config(bio_err, NULL))
190 if (!set_pbe(bio_err, &cert_pbe, *++args))
193 if (!set_pbe(bio_err, &key_pbe, *++args))
278 BIO_printf (bio_err, "Usage: pkcs12 [options]\n");
279 BIO_printf (bio_err, "where options are\n");
280 BIO_printf (bio_err, "-export output PKCS12 file\n");
281 BIO_printf (bio_err, "-chain add certificate chain\n");
282 BIO_printf (bio_err, "-inkey file private key if not infile\n")
    [all...]
dgst.c 137 BIO_printf(bio_err,"out of memory\n");
140 if (bio_err == NULL)
141 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
142 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
144 if (!load_config(bio_err, NULL))
210 e = setup_engine(bio_err, engine, 0);
263 BIO_printf(bio_err, "No signature to verify: use the -signature option\n");
269 BIO_printf(bio_err,"unknown option '%s'\n",*argv);
270 BIO_printf(bio_err,"options are\n");
271 BIO_printf(bio_err,"-c to output the digest with separating colons\n")
    [all...]
smime.c 127 if (bio_err == NULL)
129 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
130 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE|BIO_FP_TEXT);
133 if (!load_config(bio_err, NULL))
287 BIO_printf(bio_err, "Unknown digest %s\n",
301 BIO_puts(bio_err, "Illegal -inkey without -signer\n");
368 else if (args_verify(&args, NULL, &badarg, bio_err, &vpm))
377 BIO_puts(bio_err, "Multiple signers or keys not allowed\n");
386 BIO_puts(bio_err, "Illegal -inkey without -signer\n");
402 BIO_printf(bio_err, "No signer certificate specified\n")
    [all...]
cms.c 151 if (bio_err == NULL)
153 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
154 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE|BIO_FP_TEXT);
157 if (!load_config(bio_err, NULL))
313 BIO_printf(bio_err, "Invalid key %s\n", *args);
327 BIO_printf(bio_err, "Invalid id %s\n", *args);
347 BIO_printf(bio_err, "Invalid OID %s\n", *args);
430 BIO_printf(bio_err, "Unknown digest %s\n",
444 BIO_puts(bio_err, "Illegal -inkey without -signer\n");
517 else if (args_verify(&args, NULL, &badarg, bio_err, &vpm)
    [all...]
dsa.c 119 if (bio_err == NULL)
120 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
121 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
123 if (!load_config(bio_err, NULL))
194 BIO_printf(bio_err,"unknown option %s\n",*argv);
205 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
206 BIO_printf(bio_err,"where options are\n");
207 BIO_printf(bio_err," -inform arg input format - DER or PEM\n");
208 BIO_printf(bio_err," -outform arg output format - DER or PEM\n");
209 BIO_printf(bio_err," -in arg input file\n")
    [all...]
ec.c 106 if (bio_err == NULL)
107 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
108 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE|BIO_FP_TEXT);
110 if (!load_config(bio_err, NULL))
199 BIO_printf(bio_err, "unknown option %s\n", *argv);
210 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
211 BIO_printf(bio_err, "where options are\n");
212 BIO_printf(bio_err, " -inform arg input format - "
214 BIO_printf(bio_err, " -outform arg output format - "
216 BIO_printf(bio_err, " -in arg input file\n")
    [all...]
rsautl.c 111 if(!bio_err) bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
113 if (!load_config(bio_err, NULL))
184 BIO_printf(bio_err, "A private key is needed for this operation\n");
189 e = setup_engine(bio_err, engine, 0);
191 if(!app_passwd(bio_err, passargin, NULL, &passin, NULL)) {
192 BIO_printf(bio_err, "Error getting password\n");
197 app_RAND_load_file(NULL, bio_err, 0);
201 pkey = load_key(bio_err, keyfile, keyform, 0,
206 pkey = load_pubkey(bio_err, keyfile, keyform, 0
    [all...]
genpkey.c 93 if (bio_err == NULL)
94 bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
96 if (!load_config(bio_err, NULL))
125 e = setup_engine(bio_err, *(++args), 0);
135 if (!init_keygen_file(bio_err, &ctx, *args, e))
151 if (!init_gen_str(bio_err, &ctx, *(++args),e, do_param))
160 BIO_puts(bio_err, "No keytype specified\n");
165 BIO_puts(bio_err, "parameter setting error\n");
166 ERR_print_errors(bio_err);
183 BIO_printf(bio_err, "Unknown cipher %s\n"
    [all...]
ocsp.c 169 if (bio_err == NULL) bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
171 if (!load_config(bio_err, NULL))
197 BIO_printf(bio_err,
212 BIO_printf(bio_err, "Error parsing URL\n");
364 BIO_printf(bio_err,
380 BIO_printf(bio_err,
430 issuer = load_cert(bio_err, *args, FORMAT_PEM,
442 cert = load_cert(bio_err, *args, FORMAT_PEM,
492 BIO_printf(bio_err,
    [all...]
pkeyutl.c 110 if(!bio_err) bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
112 if (!load_config(bio_err, NULL))
145 BIO_puts(bio_err,
147 ERR_print_errors(bio_err);
156 else if (!setup_peer(bio_err, ctx, peerform, *(++argv)))
180 e = setup_engine(bio_err, *(++argv), 0);
211 BIO_puts(bio_err,
217 BIO_puts(bio_err, "parameter setting error\n");
218 ERR_print_errors(bio_err);
    [all...]
genrsa.c 113 BN_GENCB_set(&cb, genrsa_cb, bio_err);
115 if (bio_err == NULL)
116 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
117 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
119 if (!load_config(bio_err, NULL))
123 BIO_printf(bio_err,"unable to create BIO for output\n");
196 BIO_printf(bio_err,"usage: genrsa [args] [numbits]\n");
197 BIO_printf(bio_err," -des encrypt the generated key with DES in cbc mode\n");
198 BIO_printf(bio_err," -des3 encrypt the generated key with DES in ede cbc mode (168 bit key)\n");
200 BIO_printf(bio_err," -idea encrypt the generated key with IDEA in cbc mode\n")
    [all...]
spkac.c 102 if (!bio_err) bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
104 if (!load_config(bio_err, NULL))
168 BIO_printf(bio_err,"%s [options]\n",prog);
169 BIO_printf(bio_err,"where options are\n");
170 BIO_printf(bio_err," -in arg input file\n");
171 BIO_printf(bio_err," -out arg output file\n");
172 BIO_printf(bio_err," -key arg create SPKAC using private key\n");
173 BIO_printf(bio_err," -passin arg input file pass phrase source\n");
174 BIO_printf(bio_err," -challenge arg challenge string\n")
    [all...]
req.c 203 if (bio_err == NULL)
204 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
205 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
239 BIO_printf(bio_err, "Can't find keygen engine %s\n", *argv);
394 BIO_printf(bio_err,"unknown option %s\n",*argv);
405 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
406 BIO_printf(bio_err,"where options are\n");
407 BIO_printf(bio_err," -inform arg input format - DER or PEM\n");
408 BIO_printf(bio_err," -outform arg output format - DER or PEM\n");
409 BIO_printf(bio_err," -in arg input file\n")
    [all...]
gendh.c 104 BN_GENCB_set(&cb, dh_cb, bio_err);
105 if (bio_err == NULL)
106 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
107 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
109 if (!load_config(bio_err, NULL))
148 BIO_printf(bio_err,"usage: gendh [args] [numbits]\n");
149 BIO_printf(bio_err," -out file - output the key to 'file\n");
150 BIO_printf(bio_err," -2 - use 2 as the generator value\n");
151 /* BIO_printf(bio_err," -3 - use 3 as the generator value\n"); */
152 BIO_printf(bio_err," -5 - use 5 as the generator value\n")
    [all...]
gendsa.c 94 if (bio_err == NULL)
95 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
96 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
98 if (!load_config(bio_err, NULL))
173 BIO_printf(bio_err,"usage: gendsa [args] dsaparam-file\n");
174 BIO_printf(bio_err," -out file - output the key to 'file'\n");
176 BIO_printf(bio_err," -des - encrypt the generated key with DES in cbc mode\n");
177 BIO_printf(bio_err," -des3 - encrypt the generated key with DES in ede cbc mode (168 bit key)\n");
180 BIO_printf(bio_err," -idea - encrypt the generated key with IDEA in cbc mode\n");
183 BIO_printf(bio_err," -seed\n")
    [all...]
rsa.c 122 if (bio_err == NULL)
123 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
124 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
126 if (!load_config(bio_err, NULL))
202 BIO_printf(bio_err,"unknown option %s\n",*argv);
213 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
214 BIO_printf(bio_err,"where options are\n");
215 BIO_printf(bio_err," -inform arg input format - one of DER NET PEM\n");
216 BIO_printf(bio_err," -outform arg output format - one of DER NET PEM\n");
217 BIO_printf(bio_err," -in arg input file\n")
    [all...]
dsaparam.c 130 if (bio_err == NULL)
131 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
132 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
134 if (!load_config(bio_err, NULL))
206 BIO_printf(bio_err,"unknown option %s\n",*argv);
217 BIO_printf(bio_err,"%s [options] [bits] <infile >outfile\n",prog);
218 BIO_printf(bio_err,"where options are\n");
219 BIO_printf(bio_err," -inform arg input format - DER or PEM\n");
220 BIO_printf(bio_err," -outform arg output format - DER or PEM\n");
221 BIO_printf(bio_err," -in arg input file\n")
    [all...]
asn1pars.c 106 if (bio_err == NULL)
107 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
108 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
110 if (!load_config(bio_err, NULL))
118 BIO_printf(bio_err,"Memory allocation failure\n");
186 BIO_printf(bio_err,"unknown option %s\n",*argv);
197 BIO_printf(bio_err,"%s [options] <infile\n",prog);
198 BIO_printf(bio_err,"where options are\n");
199 BIO_printf(bio_err," -inform arg input format - one of DER PEM\n");
200 BIO_printf(bio_err," -in arg input file\n")
    [all...]
pkey.c 86 if (bio_err == NULL)
87 bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
89 if (!load_config(bio_err, NULL))
175 BIO_printf(bio_err, "Unknown cipher %s\n",
186 BIO_printf(bio_err, "Usage pkey [options]\n");
187 BIO_printf(bio_err, "where options are\n");
188 BIO_printf(bio_err, "-in file input file\n");
189 BIO_printf(bio_err, "-inform X input format (DER or PEM)\n");
190 BIO_printf(bio_err, "-passin arg input file pass phrase source\n");
191 BIO_printf(bio_err, "-outform X output format (DER or PEM)\n")
    [all...]
enc.c 136 if (bio_err == NULL)
137 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
138 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
140 if (!load_config(bio_err, NULL))
160 BIO_printf(bio_err,"%s is an unknown cipher\n",pname);
239 BIO_printf(bio_err,"unable to read key from '%s'\n",
246 BIO_printf(bio_err,"unable to read key from '%s'\n",
260 BIO_printf(bio_err,"zero length password\n");
296 BIO_printf(bio_err,"unknown option '%s'\n",*argv);
298 BIO_printf(bio_err,"options are\n")
    [all...]
pkeyparam.c 81 if (bio_err == NULL)
82 bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
84 if (!load_config(bio_err, NULL))
130 BIO_printf(bio_err, "Usage pkeyparam [options]\n");
131 BIO_printf(bio_err, "where options are\n");
132 BIO_printf(bio_err, "-in file input file\n");
133 BIO_printf(bio_err, "-out file output file\n");
134 BIO_printf(bio_err, "-text print parameters as text\n");
135 BIO_printf(bio_err, "-noout don't output encoded parameters\n");
137 BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n")
    [all...]
srp.c 152 BIO_printf(bio_err," %d = \"%s\"\n", j, pp[j]);
184 BIO_printf(bio_err,"Memory allocation failure\n");
207 BIO_printf(bio_err,"variable lookup failed for %s::%s\n",name,tag);
314 if (bio_err == NULL)
315 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
316 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
378 BIO_printf(bio_err,"unknown option %s\n",*argv);
391 BIO_printf(bio_err,"-dbfile and -configfile cannot be specified together.\n");
396 BIO_printf(bio_err,"Exactly one of the options -add, -delete, -modify -list must be specified.\n");
401 BIO_printf(bio_err,"Need at least one user for options -add, -delete, -modify. \n")
    [all...]
dh.c 102 if (bio_err == NULL)
103 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
104 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
106 if (!load_config(bio_err, NULL))
159 BIO_printf(bio_err,"unknown option %s\n",*argv);
170 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
171 BIO_printf(bio_err,"where options are\n");
172 BIO_printf(bio_err," -inform arg input format - one of DER PEM\n");
173 BIO_printf(bio_err," -outform arg output format - one of DER PEM\n");
174 BIO_printf(bio_err," -in arg input file\n")
    [all...]
nseq.c 79 if (bio_err == NULL) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
99 BIO_printf (bio_err, "Netscape certificate sequence utility\n");
100 BIO_printf (bio_err, "Usage nseq [options]\n");
101 BIO_printf (bio_err, "where options are\n");
102 BIO_printf (bio_err, "-in file input file\n");
103 BIO_printf (bio_err, "-out file output file\n");
104 BIO_printf (bio_err, "-toseq output NS Sequence file\n");
110 BIO_printf (bio_err,
118 BIO_printf (bio_err,
    [all...]

Completed in 351 milliseconds

1 2 3