Lines Matching refs:openssl
19 openssl rsa -in ca.key -check -noout
20 openssl rsa -in client.key -check -noout
21 openssl rsa -in client_encrypted.key -check -noout -passin pass:12345
22 openssl rsa -in server.key -check -noout
26 openssl x509 -in "$f" -checkend 3600 -noout
32 [[ -f ca.key ]] || openssl genrsa -out ca.key $rsa_bits
33 [[ -f client.key ]] || openssl genrsa -out client.key $rsa_bits
34 …[[ -f client_encrypted.key ]] || openssl rsa -in client.key -out client_encrypted.key -aes128 -pas…
35 [[ -f server.key ]] || openssl genrsa -out server.key $rsa_bits
38 …openssl req -batch -new -nodes -x509 -days $days -subj "$subj_prefix/CN=$org-CA" -key ca.key -out …
39 …openssl req -batch -new -nodes -x509 -days $days -subj "$subj_prefix/CN=$org-CA-unused" -key ca.ke…
42 openssl req -batch -new -nodes -out tmp.csr -key client.key -subj "$subj_prefix/CN=$org-client"
43 …openssl x509 -req -in tmp.csr -CA ca.pem -CAkey ca.key -CAcreateserial -out client.crt -days $days…
48 …openssl req -batch -new -nodes -out tmp.csr -key client_encrypted.key -passin pass:12345 -subj "$s…
49 …openssl x509 -req -in tmp.csr -CA ca.pem -CAkey ca.key -CAcreateserial -out client_encrypted.crt -…
53 openssl req -batch -new -nodes -out tmp.csr -key server.key -subj "$subj_prefix/CN=$server_cn"
54 …openssl x509 -req -in tmp.csr -CA ca.pem -CAkey ca.key -CAcreateserial -out server.crt -days $days…