Home | History | Annotate | Download | only in apps

Lines Matching refs:pem

11 # At the end of that grab newreq.pem and newcert.pem (one has the key
72 CAKEY=./cakey.pem
73 CAREQ=./careq.pem
74 CACERT=./cacert.pem
86 $REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS
88 echo "Certificate is in newcert.pem, private key is in newkey.pem"
92 $REQ -new -keyout newkey.pem -out newreq.pem $DAYS
94 echo "Request is in newreq.pem, private key is in newkey.pem"
98 $REQ -new -nodes -keyout newreq.pem -out newreq.pem $DAYS
100 echo "Request (and private key) is in newreq.pem"
141 $CA -policy policy_anything -infiles newreq.pem
150 $PKCS12 -in newcert.pem -inkey newreq.pem -certfile ${CATOP}/$CACERT \
156 $CA -policy policy_anything -out newcert.pem -infiles newreq.pem
158 cat newcert.pem
159 echo "Signed certificate is in newcert.pem"
162 $CA -policy policy_anything -out newcert.pem -extensions v3_ca -infiles newreq.pem
164 echo "Signed CA certificate is in newcert.pem"
168 $X509 -x509toreq -in newreq.pem -signkey newreq.pem -out tmp.pem
169 $CA -policy policy_anything -out newcert.pem -infiles tmp.pem
171 cat newcert.pem
172 echo "Signed certificate is in newcert.pem"
177 $VERIFY -CAfile $CATOP/$CACERT newcert.pem