• Home
  • Raw
  • Download

Lines Matching full:openssl

3 OPENSSL=../../apps/openssl
4 OPENSSL_CONF=../../apps/openssl.cnf
8 CN="Test Root CA" $OPENSSL req -config ca.cnf -x509 -nodes \
11 CN="Test Intermediate CA" $OPENSSL req -config ca.cnf -nodes \
14 $OPENSSL x509 -req -in intreq.pem -CA root.pem -days 3600 \
18 CN="Test Server Cert" $OPENSSL req -config ca.cnf -nodes \
21 $OPENSSL x509 -req -in req.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
25 CN="Test Client Cert" $OPENSSL req -config ca.cnf -nodes \
28 $OPENSSL x509 -req -in creq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
32 CN="Test Revoked Cert" $OPENSSL req -config ca.cnf -nodes \
35 $OPENSSL x509 -req -in rreq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
39 CN="Test OCSP Responder Cert" $OPENSSL req -config ca.cnf -nodes \
42 $OPENSSL x509 -req -in respreq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
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
57 CN="Test Server DH Cert" $OPENSSL req -config ca.cnf -new \
60 $OPENSSL x509 -req -in dhsreq.pem -CA root.pem -days 3600 \
66 $OPENSSL genpkey -paramfile dhp.pem -out dhckey.pem
67 $OPENSSL pkey -in dhckey.pem -pubout -out dhcpub.pem
68 CN="Test Client DH Cert" $OPENSSL req -config ca.cnf -new \
70 $OPENSSL x509 -req -in dhcreq.pem -CA root.pem -days 3600 \
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 \
91 openssl ca -revoke rev.pem -crl_reason superseded \
94 $OPENSSL ca -gencrl -keyfile root.pem -cert root.pem -config ca.cnf \