Lines Matching refs:pem
9 -keyout root.pem -out root.pem -newkey rsa:2048 -days 3650
12 -keyout intkey.pem -out intreq.pem -newkey rsa:2048
14 $OPENSSL x509 -req -in intreq.pem -CA root.pem -days 3600 \
15 -extfile ca.cnf -extensions v3_ca -CAcreateserial -out intca.pem
19 -keyout skey.pem -out req.pem -newkey rsa:1024
21 $OPENSSL x509 -req -in req.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
22 -extfile ca.cnf -extensions usr_cert -CAcreateserial -out server.pem
26 -keyout ckey.pem -out creq.pem -newkey rsa:1024
28 $OPENSSL x509 -req -in creq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
29 -extfile ca.cnf -extensions usr_cert -CAcreateserial -out client.pem
33 -keyout revkey.pem -out rreq.pem -newkey rsa:1024
35 $OPENSSL x509 -req -in rreq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
36 -extfile ca.cnf -extensions usr_cert -CAcreateserial -out rev.pem
40 -keyout respkey.pem -out respreq.pem -newkey rsa:1024
42 $OPENSSL x509 -req -in respreq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
43 -extfile ca.cnf -extensions ocsp_cert -CAcreateserial -out resp.pem
49 [ -f dhp.pem ] || $OPENSSL genpkey -genparam -algorithm DH -pkeyopt dh_paramgen_prime_len:1024 -out…
52 $OPENSSL genpkey -paramfile dhp.pem -out dhskey.pem
54 $OPENSSL pkey -in dhskey.pem -pubout -out dhspub.pem
58 -key skey.pem -out dhsreq.pem
60 $OPENSSL x509 -req -in dhsreq.pem -CA root.pem -days 3600 \
61 -force_pubkey dhspub.pem \
62 -extfile ca.cnf -extensions dh_cert -CAcreateserial -out dhserver.pem
66 $OPENSSL genpkey -paramfile dhp.pem -out dhckey.pem
67 $OPENSSL pkey -in dhckey.pem -pubout -out dhcpub.pem
69 -key skey.pem -out dhcreq.pem
70 $OPENSSL x509 -req -in dhcreq.pem -CA root.pem -days 3600 \
71 -force_pubkey dhcpub.pem \
72 -extfile ca.cnf -extensions dh_cert -CAcreateserial -out dhclient.pem
81 $OPENSSL ca -valid server.pem -keyfile root.pem -cert root.pem \
83 $OPENSSL ca -valid client.pem -keyfile root.pem -cert root.pem \
85 $OPENSSL ca -valid rev.pem -keyfile root.pem -cert root.pem \
88 $OPENSSL ca -gencrl -keyfile root.pem -cert root.pem -config ca.cnf \
89 -md sha1 -crldays 1 -out crl1.pem
91 openssl ca -revoke rev.pem -crl_reason superseded \
92 -keyfile root.pem -cert root.pem -config ca.cnf -md sha1
94 $OPENSSL ca -gencrl -keyfile root.pem -cert root.pem -config ca.cnf \
95 -md sha1 -crldays 1 -out crl2.pem