Lines Matching +full:p +full:- +full:384
2 # Create certificates using various algorithms to test multi-certificate
6 CN="OpenSSL Test RSA SHA-1 cert" $OPENSSL req \
7 -config apps.cnf -extensions usr_cert -x509 -nodes \
8 -keyout tsha1.pem -out tsha1.pem -new -days 3650 -sha1
9 CN="OpenSSL Test RSA SHA-256 cert" $OPENSSL req \
10 -config apps.cnf -extensions usr_cert -x509 -nodes \
11 -keyout tsha256.pem -out tsha256.pem -new -days 3650 -sha256
12 CN="OpenSSL Test RSA SHA-512 cert" $OPENSSL req \
13 -config apps.cnf -extensions usr_cert -x509 -nodes \
14 -keyout tsha512.pem -out tsha512.pem -new -days 3650 -sha512
18 $OPENSSL ecparam -name P-256 -out ecp256.pem
19 $OPENSSL ecparam -name P-384 -out ecp384.pem
21 CN="OpenSSL Test P-256 SHA-256 cert" $OPENSSL req \
22 -config apps.cnf -extensions ec_cert -x509 -nodes \
23 -nodes -keyout tecp256.pem -out tecp256.pem -newkey ec:ecp256.pem \
24 -days 3650 -sha256
26 CN="OpenSSL Test P-384 SHA-384 cert" $OPENSSL req \
27 -config apps.cnf -extensions ec_cert -x509 -nodes \
28 -nodes -keyout tecp384.pem -out tecp384.pem -newkey ec:ecp384.pem \
29 -days 3650 -sha384