Lines Matching refs:pem
9 -keyout root.pem -out root.pem -key rootkey.pem -new -days 3650
12 -key intkey.pem -out intreq.pem -new
14 $OPENSSL x509 -req -in intreq.pem -CA root.pem -CAkey rootkey.pem -days 3630 \
15 -extfile apps.cnf -extensions v3_ca -CAcreateserial -out intca.pem
18 -key ckey.pem -out creq.pem -new
20 $OPENSSL x509 -req -in creq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
22 $OPENSSL x509 -nameopt oneline -subject -issuer >client.pem
25 -key skey.pem -out sreq.pem -new
27 $OPENSSL x509 -req -in sreq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
29 $OPENSSL x509 -nameopt oneline -subject -issuer >server.pem
32 -key skey2.pem -out sreq2.pem -new
34 $OPENSSL x509 -req -in sreq2.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
36 $OPENSSL x509 -nameopt oneline -subject -issuer >server2.pem
40 cat skey.pem >>server.pem
41 cat skey2.pem >>server2.pem
42 cat ckey.pem >>client.pem
44 $OPENSSL verify -CAfile root.pem -untrusted intca.pem \
45 server2.pem server.pem client.pem