mirror of
https://github.com/trailofbits/algo
synced 2024-11-13 19:12:06 +00:00
Remove algo_params (#961)
This commit is contained in:
parent
87836e0358
commit
d9dc68164f
@ -44,7 +44,7 @@
|
|||||||
shell: >
|
shell: >
|
||||||
{{ openssl_bin }} ecparam -name prime256v1 -out ecparams/prime256v1.pem &&
|
{{ openssl_bin }} ecparam -name prime256v1 -out ecparams/prime256v1.pem &&
|
||||||
{{ openssl_bin }} req -utf8 -new
|
{{ openssl_bin }} req -utf8 -new
|
||||||
-newkey {{ algo_params | default('ec:ecparams/prime256v1.pem') }}
|
-newkey ec:ecparams/prime256v1.pem
|
||||||
-config <(cat openssl.cnf <(printf "[basic_exts]\nsubjectAltName={{ subjectAltName }}"))
|
-config <(cat openssl.cnf <(printf "[basic_exts]\nsubjectAltName={{ subjectAltName }}"))
|
||||||
-keyout private/cakey.pem
|
-keyout private/cakey.pem
|
||||||
-out cacert.pem -x509 -days 3650
|
-out cacert.pem -x509 -days 3650
|
||||||
@ -71,7 +71,7 @@
|
|||||||
- name: Build the server pair
|
- name: Build the server pair
|
||||||
shell: >
|
shell: >
|
||||||
{{ openssl_bin }} req -utf8 -new
|
{{ openssl_bin }} req -utf8 -new
|
||||||
-newkey {{ algo_params | default('ec:ecparams/prime256v1.pem') }}
|
-newkey ec:ecparams/prime256v1.pem
|
||||||
-config <(cat openssl.cnf <(printf "[basic_exts]\nsubjectAltName={{ subjectAltName }}"))
|
-config <(cat openssl.cnf <(printf "[basic_exts]\nsubjectAltName={{ subjectAltName }}"))
|
||||||
-keyout private/{{ IP_subject_alt_name }}.key
|
-keyout private/{{ IP_subject_alt_name }}.key
|
||||||
-out reqs/{{ IP_subject_alt_name }}.req -nodes
|
-out reqs/{{ IP_subject_alt_name }}.req -nodes
|
||||||
@ -93,7 +93,7 @@
|
|||||||
- name: Build the client's pair
|
- name: Build the client's pair
|
||||||
shell: >
|
shell: >
|
||||||
{{ openssl_bin }} req -utf8 -new
|
{{ openssl_bin }} req -utf8 -new
|
||||||
-newkey {{ algo_params | default('ec:ecparams/prime256v1.pem') }}
|
-newkey ec:ecparams/prime256v1.pem
|
||||||
-config <(cat openssl.cnf <(printf "[basic_exts]\nsubjectAltName=DNS:{{ item }}"))
|
-config <(cat openssl.cnf <(printf "[basic_exts]\nsubjectAltName=DNS:{{ item }}"))
|
||||||
-keyout private/{{ item }}.key
|
-keyout private/{{ item }}.key
|
||||||
-out reqs/{{ item }}.req -nodes
|
-out reqs/{{ item }}.req -nodes
|
||||||
|
Loading…
Reference in New Issue
Block a user