/system/core/fastboot/ |
p12topem.sh | 9 openssl pkcs12 -passin pass:"$2" -passout pass:"$2" -in $1.p12 -out $1.pem
|
genkey.sh | 11 openssl genrsa -3 -out $1.pem -passout pass:"$2" 2048 21 -out $1.p12 -name $1 -passout pass:"$2"
|
/external/openssl/apps/ |
pkey.c | 79 char *passin = NULL, *passout = NULL; local 123 else if (!strcmp(*args,"-passout")) 193 BIO_printf(bio_err, "-passout arg output file pass phrase source\n"); 204 if (!app_passwd(bio_err, passargin, passargout, &passin, &passout)) 247 NULL, 0, NULL, passout); 280 if (passout) 281 OPENSSL_free(passout);
|
pkcs8.c | 86 char pass[50], *passin = NULL, *passout = NULL, *p8pass = NULL; local 173 else if (!strcmp(*args,"-passout")) 217 BIO_printf(bio_err, "-passout arg output file pass phrase source\n"); 236 if (!app_passwd(bio_err, passargin, passargout, &passin, &passout)) 302 if (passout) 303 p8pass = passout; 417 PEM_write_bio_PrivateKey(out, pkey, NULL, NULL, 0, NULL, passout); 435 if (passout) 436 OPENSSL_free(passout);
|
dsa.c | 112 char *passin = NULL, *passout = NULL; local 164 else if (strcmp(*argv,"-passout") == 0) 212 BIO_printf(bio_err," -passout arg output file pass phrase source\n"); 244 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) { 336 NULL,0,NULL, passout); 343 i = i2b_PVK_bio(out, pk, pvk_encr, 0, passout); 366 if(passout) OPENSSL_free(passout);
|
ec.c | 98 char *passin = NULL, *passout = NULL; local 149 else if (strcmp(*argv,"-passout") == 0) 220 BIO_printf(bio_err, " -passout arg output file pass " 257 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) 370 NULL, 0, NULL, passout); 395 if (passout) 396 OPENSSL_free(passout);
|
genrsa.c | 101 char *passargout = NULL, *passout = NULL; local 183 else if (strcmp(*argv,"-passout") == 0) 215 BIO_printf(bio_err," -passout arg output file pass phrase source\n"); 229 if(!app_passwd(bio_err, NULL, passargout, NULL, &passout)) { 295 cb_data.password = passout; 307 if(passout) OPENSSL_free(passout);
|
gendsa.c | 85 char *passargout = NULL, *passout = NULL; local 111 else if (strcmp(*argv,"-passout") == 0) 209 if(!app_passwd(bio_err, NULL, passargout, NULL, &passout)) { 266 if (!PEM_write_bio_DSAPrivateKey(out,dsa,enc,NULL,0,NULL, passout)) 275 if(passout) OPENSSL_free(passout);
|
rsa.c | 112 char *passin = NULL, *passout = NULL; local 164 else if (strcmp(*argv,"-passout") == 0) 221 BIO_printf(bio_err," -passout arg output file pass phrase source\n"); 256 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) { 411 enc,NULL,0,NULL,passout); 418 i = i2b_PVK_bio(out, pk, pvk_encr, 0, passout); 440 if(passout) OPENSSL_free(passout);
|
srp.c | 98 " -passout arg output file pass phrase source\n", 244 char *passout, BIO *bio, int verbose) 251 cb_tmp.password = passout; 277 char *passin = NULL, *passout = NULL; local 362 else if (strcmp(*argv,"-passout") == 0) 404 if ((passin || passout) && argc != 1 ) 406 BIO_printf(bio_err,"-passin, -passout arguments only valid with one user.\n"); 427 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) 602 if (!(gNid = srp_create_user(user,&(row[DB_srpverifier]), &(row[DB_srpsalt]),gNrow?gNrow[DB_srpsalt]:gN,gNrow?gNrow[DB_srpverifier]:NULL, passout, bio_err,verbose))) 665 if (!(gNid=srp_create_user(user,&(row[DB_srpverifier]), &(row[DB_srpsalt]),gNrow?gNrow[DB_srpsalt]:NULL, gNrow?gNrow[DB_srpverifier]:NULL, passout, bio_err,verbose)) [all...] |
pkcs12.c | 123 char *passin = NULL, *passout = NULL; local 243 } else if (!strcmp(*args,"-passout")) { 327 BIO_printf (bio_err, "-passout p output file pass phrase source\n"); 348 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) { 354 if(export_cert) cpass = passout; 673 if (!dump_certs_keys_p12 (out, p12, cpass, -1, options, passout)) { 692 if(passout) OPENSSL_free(passout);
|
req.c | 186 char *passin = NULL, *passout = NULL; local 287 else if (strcmp(*argv,"-passout") == 0) 454 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) { 565 if(!passout) 567 passout = NCONF_get_string(req_conf, SECTION, "output_password"); 568 if (!passout) 753 NULL,0,NULL,passout)) 1110 if(passargout && passout) OPENSSL_free(passout); [all...] |
/development/tools/ |
make_key | 63 -passout stdin
|