HomeSort by: relevance | last modified time | path
    Searched refs:passin (Results 1 - 25 of 56) sorted by relevancy

1 2 3

  /src/crypto/external/bsd/openssl.old/dist/apps/
pkey.c 29 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
56 char *infile = NULL, *outfile = NULL, *passin = NULL, *passout = NULL; local
135 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
145 pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key");
147 pkey = load_key(infile, informat, 1, passin, e, "key");
239 OPENSSL_free(passin);
spkac.c 36 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
58 char *infile = NULL, *outfile = NULL, *passinarg = NULL, *passin = NULL; local
120 if (!app_passwd(passinarg, NULL, &passin, NULL)) {
127 keyformat, 1, passin, e, "private key");
200 OPENSSL_free(passin);
ec.c 55 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
76 char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL; local
165 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
185 pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key");
187 pkey = load_key(infile, informat, 1, passin, e, "Private Key");
196 eckey = PEM_read_bio_ECPrivateKey(in, NULL, NULL, passin);
275 OPENSSL_free(passin);
dsa.c 45 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
66 char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL; local
147 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
157 pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key");
159 pkey = load_key(infile, informat, 1, passin, e, "Private Key");
257 OPENSSL_free(passin);
rsa.c 44 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
70 char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL; local
157 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
180 pkey = load_pubkey(infile, tmpformat, 1, passin, e, "Public Key");
182 pkey = load_key(infile, informat, 1, passin, e, "Private Key");
308 OPENSSL_free(passin);
pkcs8.c 46 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
74 char *passin = NULL, *passout = NULL, *p8pass = NULL; local
189 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
205 pkey = load_key(infile, informat, 1, passin, e, "key");
304 if (passin != NULL) {
305 p8pass = passin;
355 OPENSSL_free(passin);
rsautl.c 57 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
73 char *passinarg = NULL, *passin = NULL, *prog; local
170 if (!app_passwd(passinarg, NULL, &passin, NULL)) {
177 pkey = load_key(keyfile, keyformat, 0, passin, e, "Private Key");
275 OPENSSL_free(passin);
storeutl.c 37 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
59 char *outfile = NULL, *passin = NULL, *passinarg = NULL; local
295 if (!app_passwd(passinarg, NULL, &passin, NULL)) {
299 pw_cb_data.password = passin;
318 OPENSSL_free(passin);
  /src/crypto/external/apache2/openssl/dist/apps/
ec.c 57 { "passin", OPT_PASSIN, 's', "Input file pass phrase source" },
88 char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL; local
182 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
190 eckey = load_pubkey(infile, informat, 1, passin, e, "public key");
192 eckey = load_key(infile, informat, 1, passin, e, "private key");
299 if (passin != NULL)
300 OPENSSL_clear_free(passin, strlen(passin));
dsa.c 74 { "passin", OPT_PASSIN, 's', "Input file pass phrase source" },
96 char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL; local
184 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
191 pkey = load_pubkey(infile, informat, 1, passin, e, "public key");
193 pkey = load_key(infile, informat, 1, passin, e, "private key");
316 OPENSSL_free(passin);
pkey.c 58 { "passin", OPT_PASSIN, 's', "Key input pass phrase source" },
89 char *infile = NULL, *outfile = NULL, *passin = NULL, *passout = NULL; local
220 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
226 pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key");
228 pkey = load_key(infile, informat, 1, passin, e, "key");
340 OPENSSL_free(passin);
pkcs8.c 64 { "passin", OPT_PASSIN, 's', "Input file pass phrase source" },
103 char *passin = NULL, *passout = NULL, *p8pass = NULL; local
233 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
247 pkey = load_key(infile, informat, 1, passin, e, "key");
347 if (passin != NULL) {
348 p8pass = passin;
402 OPENSSL_free(passin);
rsautl.c 71 { "passin", OPT_PASSIN, 's', "Input file pass phrase source" },
96 char *passinarg = NULL, *passin = NULL, *prog; local
199 if (!app_passwd(passinarg, NULL, &passin, NULL)) {
206 pkey = load_key(keyfile, keyformat, 0, passin, e, "private key");
307 OPENSSL_free(passin);
spkac.c 54 { "passin", OPT_PASSIN, 's', "Input file pass phrase source" },
77 char *infile = NULL, *outfile = NULL, *passinarg = NULL, *passin = NULL; local
149 if (!app_passwd(passinarg, NULL, &passin, NULL)) {
159 keyformat, 1, passin, e, "private key");
241 OPENSSL_free(passin);
rsa.c 82 { "passin", OPT_PASSIN, 's', "Input file pass phrase source" },
145 char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL; local
243 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
264 pkey = load_pubkey(infile, tmpformat, 1, passin, e, "public key");
266 pkey = load_key(infile, informat, 1, passin, e, "private key");
425 OPENSSL_free(passin);
ts.c 48 const char *queryfile, const char *passin, const char *inkey,
54 const char *queryfile, const char *passin,
127 { "passin", OPT_PASSIN, 's', "Input file pass phrase source" },
163 " [-queryfile file] [-passin password]",
189 char *in = NULL, *out = NULL, *queryfile = NULL, *passin = NULL; local
277 passin = opt_arg();
327 if (mode == OPT_REPLY && passin && !app_passwd(passin, NULL, &password, NULL)) {
612 const char *queryfile, const char *passin, const char *inkey,
635 passin, inkey, md, signer, chain, policy)
    [all...]
  /src/crypto/external/bsd/openssl/dist/apps/
ec.c 43 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
74 char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL; local
172 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
180 eckey = load_pubkey(infile, informat, 1, passin, e, "public key");
182 eckey = load_key(infile, informat, 1, passin, e, "private key");
289 if (passin != NULL)
290 OPENSSL_clear_free(passin, strlen(passin));
dsa.c 62 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
84 char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL; local
176 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
183 pkey = load_pubkey(infile, informat, 1, passin, e, "public key");
185 pkey = load_key(infile, informat, 1, passin, e, "private key");
308 OPENSSL_free(passin);
pkey.c 44 {"passin", OPT_PASSIN, 's', "Key input pass phrase source"},
75 char *infile = NULL, *outfile = NULL, *passin = NULL, *passout = NULL; local
208 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
218 pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key");
220 pkey = load_key(infile, informat, 1, passin, e, "key");
328 OPENSSL_free(passin);
pkcs8.c 45 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
83 char *passin = NULL, *passout = NULL, *p8pass = NULL; local
209 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
226 pkey = load_key(infile, informat, 1, passin, e, "key");
325 if (passin != NULL) {
326 p8pass = passin;
377 OPENSSL_free(passin);
rsautl.c 55 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
80 char *passinarg = NULL, *passin = NULL, *prog; local
184 if (!app_passwd(passinarg, NULL, &passin, NULL)) {
191 pkey = load_key(keyfile, keyformat, 0, passin, e, "private key");
291 OPENSSL_free(passin);
spkac.c 44 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
67 char *infile = NULL, *outfile = NULL, *passinarg = NULL, *passin = NULL; local
140 if (!app_passwd(passinarg, NULL, &passin, NULL)) {
150 keyformat, 1, passin, e, "private key");
231 OPENSSL_free(passin);
rsa.c 67 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
130 char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL; local
230 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
251 pkey = load_pubkey(infile, tmpformat, 1, passin, e, "public key");
253 pkey = load_key(infile, informat, 1, passin, e, "private key");
412 OPENSSL_free(passin);
pkeyutl.c 74 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
337 char *passin = strchr(opt, ':'); local
340 if (passin == NULL) {
361 /* Get password as a passin argument: First split option name
363 *passin = 0;
364 passin++;
365 if (app_passwd(passin, NULL, &passwd, NULL) == 0) {
534 char *passin = NULL; local
544 if (!app_passwd(passinarg, NULL, &passin, NULL)) {
550 pkey = load_key(keyfile, keyform, 0, passin, e, "private key")
    [all...]
ts.c 50 const char *queryfile, const char *passin, const char *inkey,
56 const char *queryfile, const char *passin,
106 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
142 " [-queryfile file] [-passin password]",
168 char *in = NULL, *out = NULL, *queryfile = NULL, *passin = NULL; local
253 passin = opt_arg();
302 if (mode == OPT_REPLY && passin &&
303 !app_passwd(passin, NULL, &password, NULL)) {
588 const char *queryfile, const char *passin, const char *inkey,
611 passin, inkey, md, signer, chain, policy)
    [all...]

Completed in 34 milliseconds

1 2 3