diff --git a/branch/main/openssh_cert_module.html b/branch/main/openssh_cert_module.html index 92aff707..958c0c41 100644 --- a/branch/main/openssh_cert_module.html +++ b/branch/main/openssh_cert_module.html @@ -262,8 +262,8 @@ see

any

The permissions the resulting filesystem object should have.

-

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must either add a leading zero so that Ansible’s YAML parser knows it is an octal number (like 0644 or 01777) or quote it (like '644' or '1777') so Ansible receives a string and can do its own conversion from string into number.

-

Giving Ansible a number without following one of these rules will end up with a decimal number which will have unexpected results.

+

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must give Ansible enough information to parse them correctly. For consistent results, quote octal numbers (for example, '644' or '1777') so Ansible receives a string and can do its own conversion from string into number. Adding a leading zero (for example, 0755) works sometimes, but can fail in loops and some other circumstances.

+

Giving Ansible a number without following either of these rules will end up with a decimal number which will have unexpected results.

As of Ansible 1.8, the mode may be specified as a symbolic mode (for example, u+rwx or u=rw,g=r,o=r).

If mode is not specified and the destination filesystem object does not exist, the default umask on the system will be used when setting the mode for the newly created filesystem object.

If mode is not specified and the destination filesystem object does exist, the mode of the existing filesystem object will be used.

diff --git a/branch/main/openssh_keypair_module.html b/branch/main/openssh_keypair_module.html index 65356194..6191fe10 100644 --- a/branch/main/openssh_keypair_module.html +++ b/branch/main/openssh_keypair_module.html @@ -266,8 +266,8 @@ see

any

The permissions the resulting filesystem object should have.

-

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must either add a leading zero so that Ansible’s YAML parser knows it is an octal number (like 0644 or 01777) or quote it (like '644' or '1777') so Ansible receives a string and can do its own conversion from string into number.

-

Giving Ansible a number without following one of these rules will end up with a decimal number which will have unexpected results.

+

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must give Ansible enough information to parse them correctly. For consistent results, quote octal numbers (for example, '644' or '1777') so Ansible receives a string and can do its own conversion from string into number. Adding a leading zero (for example, 0755) works sometimes, but can fail in loops and some other circumstances.

+

Giving Ansible a number without following either of these rules will end up with a decimal number which will have unexpected results.

As of Ansible 1.8, the mode may be specified as a symbolic mode (for example, u+rwx or u=rw,g=r,o=r).

If mode is not specified and the destination filesystem object does not exist, the default umask on the system will be used when setting the mode for the newly created filesystem object.

If mode is not specified and the destination filesystem object does exist, the mode of the existing filesystem object will be used.

diff --git a/branch/main/openssl_csr_module.html b/branch/main/openssl_csr_module.html index 24f21380..bfea0a42 100644 --- a/branch/main/openssl_csr_module.html +++ b/branch/main/openssl_csr_module.html @@ -479,8 +479,8 @@ see

any

The permissions the resulting filesystem object should have.

-

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must either add a leading zero so that Ansible’s YAML parser knows it is an octal number (like 0644 or 01777) or quote it (like '644' or '1777') so Ansible receives a string and can do its own conversion from string into number.

-

Giving Ansible a number without following one of these rules will end up with a decimal number which will have unexpected results.

+

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must give Ansible enough information to parse them correctly. For consistent results, quote octal numbers (for example, '644' or '1777') so Ansible receives a string and can do its own conversion from string into number. Adding a leading zero (for example, 0755) works sometimes, but can fail in loops and some other circumstances.

+

Giving Ansible a number without following either of these rules will end up with a decimal number which will have unexpected results.

As of Ansible 1.8, the mode may be specified as a symbolic mode (for example, u+rwx or u=rw,g=r,o=r).

If mode is not specified and the destination filesystem object does not exist, the default umask on the system will be used when setting the mode for the newly created filesystem object.

If mode is not specified and the destination filesystem object does exist, the mode of the existing filesystem object will be used.

diff --git a/branch/main/openssl_dhparam_module.html b/branch/main/openssl_dhparam_module.html index 17180717..d026509b 100644 --- a/branch/main/openssl_dhparam_module.html +++ b/branch/main/openssl_dhparam_module.html @@ -258,8 +258,8 @@ see

any

The permissions the resulting filesystem object should have.

-

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must either add a leading zero so that Ansible’s YAML parser knows it is an octal number (like 0644 or 01777) or quote it (like '644' or '1777') so Ansible receives a string and can do its own conversion from string into number.

-

Giving Ansible a number without following one of these rules will end up with a decimal number which will have unexpected results.

+

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must give Ansible enough information to parse them correctly. For consistent results, quote octal numbers (for example, '644' or '1777') so Ansible receives a string and can do its own conversion from string into number. Adding a leading zero (for example, 0755) works sometimes, but can fail in loops and some other circumstances.

+

Giving Ansible a number without following either of these rules will end up with a decimal number which will have unexpected results.

As of Ansible 1.8, the mode may be specified as a symbolic mode (for example, u+rwx or u=rw,g=r,o=r).

If mode is not specified and the destination filesystem object does not exist, the default umask on the system will be used when setting the mode for the newly created filesystem object.

If mode is not specified and the destination filesystem object does exist, the mode of the existing filesystem object will be used.

diff --git a/branch/main/openssl_pkcs12_module.html b/branch/main/openssl_pkcs12_module.html index a9c7fe7b..4bae44c2 100644 --- a/branch/main/openssl_pkcs12_module.html +++ b/branch/main/openssl_pkcs12_module.html @@ -319,8 +319,8 @@ see

any

The permissions the resulting filesystem object should have.

-

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must either add a leading zero so that Ansible’s YAML parser knows it is an octal number (like 0644 or 01777) or quote it (like '644' or '1777') so Ansible receives a string and can do its own conversion from string into number.

-

Giving Ansible a number without following one of these rules will end up with a decimal number which will have unexpected results.

+

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must give Ansible enough information to parse them correctly. For consistent results, quote octal numbers (for example, '644' or '1777') so Ansible receives a string and can do its own conversion from string into number. Adding a leading zero (for example, 0755) works sometimes, but can fail in loops and some other circumstances.

+

Giving Ansible a number without following either of these rules will end up with a decimal number which will have unexpected results.

As of Ansible 1.8, the mode may be specified as a symbolic mode (for example, u+rwx or u=rw,g=r,o=r).

If mode is not specified and the destination filesystem object does not exist, the default umask on the system will be used when setting the mode for the newly created filesystem object.

If mode is not specified and the destination filesystem object does exist, the mode of the existing filesystem object will be used.

diff --git a/branch/main/openssl_privatekey_convert_module.html b/branch/main/openssl_privatekey_convert_module.html index f09eb35e..f54174e9 100644 --- a/branch/main/openssl_privatekey_convert_module.html +++ b/branch/main/openssl_privatekey_convert_module.html @@ -272,8 +272,8 @@ see

any

The permissions the resulting filesystem object should have.

-

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must either add a leading zero so that Ansible’s YAML parser knows it is an octal number (like 0644 or 01777) or quote it (like '644' or '1777') so Ansible receives a string and can do its own conversion from string into number.

-

Giving Ansible a number without following one of these rules will end up with a decimal number which will have unexpected results.

+

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must give Ansible enough information to parse them correctly. For consistent results, quote octal numbers (for example, '644' or '1777') so Ansible receives a string and can do its own conversion from string into number. Adding a leading zero (for example, 0755) works sometimes, but can fail in loops and some other circumstances.

+

Giving Ansible a number without following either of these rules will end up with a decimal number which will have unexpected results.

As of Ansible 1.8, the mode may be specified as a symbolic mode (for example, u+rwx or u=rw,g=r,o=r).

If mode is not specified and the destination filesystem object does not exist, the default umask on the system will be used when setting the mode for the newly created filesystem object.

If mode is not specified and the destination filesystem object does exist, the mode of the existing filesystem object will be used.

diff --git a/branch/main/openssl_privatekey_module.html b/branch/main/openssl_privatekey_module.html index deded006..23fd4e34 100644 --- a/branch/main/openssl_privatekey_module.html +++ b/branch/main/openssl_privatekey_module.html @@ -331,8 +331,8 @@ see

any

The permissions the resulting filesystem object should have.

-

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must either add a leading zero so that Ansible’s YAML parser knows it is an octal number (like 0644 or 01777) or quote it (like '644' or '1777') so Ansible receives a string and can do its own conversion from string into number.

-

Giving Ansible a number without following one of these rules will end up with a decimal number which will have unexpected results.

+

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must give Ansible enough information to parse them correctly. For consistent results, quote octal numbers (for example, '644' or '1777') so Ansible receives a string and can do its own conversion from string into number. Adding a leading zero (for example, 0755) works sometimes, but can fail in loops and some other circumstances.

+

Giving Ansible a number without following either of these rules will end up with a decimal number which will have unexpected results.

As of Ansible 1.8, the mode may be specified as a symbolic mode (for example, u+rwx or u=rw,g=r,o=r).

If mode is not specified and the destination filesystem object does not exist, the default umask on the system will be used when setting the mode for the newly created filesystem object.

If mode is not specified and the destination filesystem object does exist, the mode of the existing filesystem object will be used.

diff --git a/branch/main/openssl_publickey_module.html b/branch/main/openssl_publickey_module.html index f172b733..90d4f846 100644 --- a/branch/main/openssl_publickey_module.html +++ b/branch/main/openssl_publickey_module.html @@ -269,8 +269,8 @@ see

any

The permissions the resulting filesystem object should have.

-

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must either add a leading zero so that Ansible’s YAML parser knows it is an octal number (like 0644 or 01777) or quote it (like '644' or '1777') so Ansible receives a string and can do its own conversion from string into number.

-

Giving Ansible a number without following one of these rules will end up with a decimal number which will have unexpected results.

+

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must give Ansible enough information to parse them correctly. For consistent results, quote octal numbers (for example, '644' or '1777') so Ansible receives a string and can do its own conversion from string into number. Adding a leading zero (for example, 0755) works sometimes, but can fail in loops and some other circumstances.

+

Giving Ansible a number without following either of these rules will end up with a decimal number which will have unexpected results.

As of Ansible 1.8, the mode may be specified as a symbolic mode (for example, u+rwx or u=rw,g=r,o=r).

If mode is not specified and the destination filesystem object does not exist, the default umask on the system will be used when setting the mode for the newly created filesystem object.

If mode is not specified and the destination filesystem object does exist, the mode of the existing filesystem object will be used.

diff --git a/branch/main/searchindex.js b/branch/main/searchindex.js index 0f1722c1..6c5ac272 100644 --- a/branch/main/searchindex.js +++ b/branch/main/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["acme_account_facts_module", "acme_account_info_module", "acme_account_module", "acme_certificate_module", "acme_certificate_revoke_module", "acme_challenge_cert_helper_module", "acme_inspect_module", "certificate_complete_chain_module", "crypto_info_module", "docsite/guide_ownca", "docsite/guide_selfsigned", "ecs_certificate_module", "ecs_domain_module", "environment_variables", "get_certificate_module", "index", "luks_device_module", "openssh_cert_module", "openssh_keypair_module", "openssl_certificate_info_module", "openssl_certificate_module", "openssl_csr_info_filter", "openssl_csr_info_module", "openssl_csr_module", "openssl_csr_pipe_module", "openssl_dhparam_module", "openssl_pkcs12_module", "openssl_privatekey_convert_module", "openssl_privatekey_info_filter", "openssl_privatekey_info_module", "openssl_privatekey_module", "openssl_privatekey_pipe_module", "openssl_publickey_info_filter", "openssl_publickey_info_module", "openssl_publickey_module", "openssl_signature_info_module", "openssl_signature_module", "split_pem_filter", "x509_certificate_info_filter", "x509_certificate_info_module", "x509_certificate_module", "x509_certificate_pipe_module", "x509_crl_info_filter", "x509_crl_info_module", "x509_crl_module"], "filenames": ["acme_account_facts_module.rst", "acme_account_info_module.rst", "acme_account_module.rst", "acme_certificate_module.rst", "acme_certificate_revoke_module.rst", "acme_challenge_cert_helper_module.rst", "acme_inspect_module.rst", "certificate_complete_chain_module.rst", "crypto_info_module.rst", "docsite/guide_ownca.rst", "docsite/guide_selfsigned.rst", "ecs_certificate_module.rst", "ecs_domain_module.rst", "environment_variables.rst", "get_certificate_module.rst", "index.rst", "luks_device_module.rst", "openssh_cert_module.rst", "openssh_keypair_module.rst", "openssl_certificate_info_module.rst", "openssl_certificate_module.rst", "openssl_csr_info_filter.rst", "openssl_csr_info_module.rst", "openssl_csr_module.rst", "openssl_csr_pipe_module.rst", "openssl_dhparam_module.rst", "openssl_pkcs12_module.rst", "openssl_privatekey_convert_module.rst", "openssl_privatekey_info_filter.rst", "openssl_privatekey_info_module.rst", "openssl_privatekey_module.rst", "openssl_privatekey_pipe_module.rst", "openssl_publickey_info_filter.rst", "openssl_publickey_info_module.rst", "openssl_publickey_module.rst", "openssl_signature_info_module.rst", "openssl_signature_module.rst", "split_pem_filter.rst", "x509_certificate_info_filter.rst", "x509_certificate_info_module.rst", "x509_certificate_module.rst", "x509_certificate_pipe_module.rst", "x509_crl_info_filter.rst", "x509_crl_info_module.rst", "x509_crl_module.rst"], "titles": ["community.crypto.acme_account_facts", "community.crypto.acme_account_info module \u2013 Retrieves information on ACME accounts", "community.crypto.acme_account module \u2013 Create, modify or delete ACME accounts", "community.crypto.acme_certificate module \u2013 Create SSL/TLS certificates with the ACME protocol", "community.crypto.acme_certificate_revoke module \u2013 Revoke certificates with the ACME protocol", "community.crypto.acme_challenge_cert_helper module \u2013 Prepare certificates required for ACME challenges such as tls-alpn-01", "community.crypto.acme_inspect module \u2013 Send direct requests to an ACME server", "community.crypto.certificate_complete_chain module \u2013 Complete certificate chain given a set of untrusted and root certificates", "community.crypto.crypto_info module \u2013 Retrieve cryptographic capabilities", "How to create a small CA", "How to create self-signed certificates", "community.crypto.ecs_certificate module \u2013 Request SSL/TLS certificates with the Entrust Certificate Services (ECS) API", "community.crypto.ecs_domain module \u2013 Request validation of a domain with the Entrust Certificate Services (ECS) API", "Index of all Collection Environment Variables", "community.crypto.get_certificate module \u2013 Get a certificate from a host:port", "Community.Crypto", "community.crypto.luks_device module \u2013 Manage encrypted (LUKS) devices", "community.crypto.openssh_cert module \u2013 Generate OpenSSH host or user certificates.", "community.crypto.openssh_keypair module \u2013 Generate OpenSSH private and public keys", "community.crypto.openssl_certificate_info", "community.crypto.openssl_certificate", "community.crypto.openssl_csr_info filter \u2013 Retrieve information from OpenSSL Certificate Signing Requests (CSR)", "community.crypto.openssl_csr_info module \u2013 Provide information of OpenSSL Certificate Signing Requests (CSR)", "community.crypto.openssl_csr module \u2013 Generate OpenSSL Certificate Signing Request (CSR)", "community.crypto.openssl_csr_pipe module \u2013 Generate OpenSSL Certificate Signing Request (CSR)", "community.crypto.openssl_dhparam module \u2013 Generate OpenSSL Diffie-Hellman Parameters", "community.crypto.openssl_pkcs12 module \u2013 Generate OpenSSL PKCS#12 archive", "community.crypto.openssl_privatekey_convert module \u2013 Convert OpenSSL private keys", "community.crypto.openssl_privatekey_info filter \u2013 Retrieve information from OpenSSL private keys", "community.crypto.openssl_privatekey_info module \u2013 Provide information for OpenSSL private keys", "community.crypto.openssl_privatekey module \u2013 Generate OpenSSL private keys", "community.crypto.openssl_privatekey_pipe module \u2013 Generate OpenSSL private keys without disk access", "community.crypto.openssl_publickey_info filter \u2013 Retrieve information from OpenSSL public keys in PEM format", "community.crypto.openssl_publickey_info module \u2013 Provide information for OpenSSL public keys", "community.crypto.openssl_publickey module \u2013 Generate an OpenSSL public key from its private key.", "community.crypto.openssl_signature_info module \u2013 Verify signatures with openssl", "community.crypto.openssl_signature module \u2013 Sign data with openssl", "community.crypto.split_pem filter \u2013 Split PEM file contents into multiple objects", "community.crypto.x509_certificate_info filter \u2013 Retrieve information from X.509 certificates in PEM format", "community.crypto.x509_certificate_info module \u2013 Provide information of OpenSSL X.509 certificates", "community.crypto.x509_certificate module \u2013 Generate and/or check OpenSSL certificates", "community.crypto.x509_certificate_pipe module \u2013 Generate and/or check OpenSSL certificates", "community.crypto.x509_crl_info filter \u2013 Retrieve information from X.509 CRLs in PEM format", "community.crypto.x509_crl_info module \u2013 Retrieve information on Certificate Revocation Lists (CRLs)", "community.crypto.x509_crl module \u2013 Generate Certificate Revocation Lists (CRLs)"], "terms": {"thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "plugin": [0, 13, 19, 20, 21, 22, 28, 29, 31, 32, 33, 37, 38, 39, 42, 43], "wa": [0, 1, 3, 4, 6, 9, 11, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 29, 30, 31, 34, 35, 38, 39, 40, 42, 43, 44], "part": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "collect": [0, 9, 10, 15, 19, 20], "version": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "2": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "14": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "1": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "modul": [0, 9, 10, 19, 20, 21, 28, 32, 38, 42], "ha": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 42, 43, 44], "been": [0, 1, 2, 3, 4, 6, 11, 13, 14, 16, 17, 19, 20, 23, 24, 29, 34, 41, 44], "remov": [0, 1, 2, 3, 4, 6, 16, 19, 20, 26, 34, 40, 44], "0": [0, 1, 2, 3, 4, 5, 6, 8, 11, 12, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "The": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "renam": [0, 19, 20, 39, 40, 44], "acme_account_info": [0, 2, 15], "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "To": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "instal": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "us": [1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "ansibl": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "galaxi": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "you": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "need": [1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "further": [1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "abl": [1, 2, 3, 4, 5, 6, 7, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "detail": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "playbook": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "specifi": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "allow": [1, 2, 3, 4, 6, 11, 12, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "ca": [1, 2, 3, 4, 6, 7, 11, 15, 17, 21, 22, 23, 24, 26, 37, 38, 39, 40, 41, 42, 43, 44], "support": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "protocol": [1, 2, 5, 6, 14, 15, 18, 40], "let": [1, 2, 3, 4, 6, 40], "": [1, 2, 3, 4, 5, 6, 9, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 41, 42, 43, 44], "encrypt": [1, 2, 3, 4, 6, 14, 15, 18, 26, 27, 30, 31, 40], "onli": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "work": [1, 2, 3, 4, 6, 16, 27, 30, 31, 34], "v2": [1, 2, 3, 4, 6, 34], "below": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "ar": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "host": [1, 2, 3, 4, 5, 6, 7, 11, 12, 15, 16, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "execut": [1, 2, 3, 4, 5, 6, 7, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "either": [1, 2, 3, 4, 6, 11, 12, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 33, 34, 35, 36, 39, 40, 41, 43, 44], "openssl": [1, 2, 3, 4, 6, 7, 8, 14, 15, 38], "cryptographi": [1, 2, 3, 4, 5, 6, 7, 8, 11, 14, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44], "5": [1, 2, 3, 4, 6, 7, 8, 12, 16, 21, 22, 30, 31, 35, 36, 38, 39, 40, 41], "ipaddress": [1, 2, 3, 4, 6], "comment": [1, 2, 3, 4, 5, 6, 7, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "account_key_cont": [1, 2, 3, 4, 6], "string": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "content": [1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 14, 15, 16, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "rsa": [1, 2, 3, 4, 6, 8, 10, 17, 18, 21, 22, 28, 29, 30, 31, 32, 33, 35, 36, 38, 39], "ellipt": [1, 2, 3, 4, 6, 8, 18, 21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "curv": [1, 2, 3, 4, 6, 8, 18, 21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "kei": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 21, 22, 23, 24, 25, 26, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "mutual": [1, 2, 3, 4, 5, 6, 16, 23, 24, 26, 40, 41, 44], "exclus": [1, 2, 3, 4, 5, 6, 16, 23, 24, 26, 40, 41, 44], "account_key_src": [1, 2, 3, 4, 5, 6, 8], "warn": [1, 2, 3, 4, 6, 28, 29, 39, 40], "written": [1, 2, 3, 4, 6, 17, 18, 23, 25, 26, 27, 30, 31, 34, 40, 44], "temporari": [1, 2, 3, 4, 6], "file": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "which": [1, 2, 3, 4, 6, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "delet": [1, 3, 4, 6, 15], "when": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "complet": [1, 2, 3, 4, 6, 8, 15, 16, 31], "sinc": [1, 2, 3, 4, 6, 9, 16, 23, 24, 26, 29], "an": [1, 2, 3, 4, 5, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 38, 39, 40, 41, 42, 43, 44], "import": [1, 2, 3, 4, 6, 8, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40, 44], "privat": [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 15, 17, 21, 22, 23, 24, 25, 26, 32, 33, 35, 36, 38, 39, 40, 41, 42, 43, 44], "can": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 42, 43, 44], "chang": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "revok": [1, 2, 3, 6, 11, 15, 42, 43, 44], "your": [1, 2, 3, 4, 6, 9, 11, 12, 23, 24, 25, 30, 40, 41], "certif": [1, 2, 6, 15, 25, 26, 28, 30, 31, 34, 35, 36, 37, 42], "without": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 33, 34, 35, 36, 39, 40, 41, 43, 44], "know": [1, 2, 3, 4, 6, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40], "might": [1, 2, 3, 4, 6, 14, 27, 30, 31, 34, 44], "accept": [1, 2, 3, 4, 6, 11, 23, 24], "In": [1, 2, 3, 4, 6, 9, 11, 18, 21, 22, 26, 29, 30, 41], "case": [1, 2, 3, 4, 6, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 25, 26, 27, 29, 30, 31, 34, 38, 39, 40, 44], "It": [1, 2, 3, 4, 6, 7, 11, 18, 22, 27, 29, 30, 33, 39, 40, 41, 44], "still": [1, 2, 3, 4, 6, 11, 17, 22, 29, 39, 40], "happen": [1, 2, 3, 4, 6], "disk": [1, 2, 3, 4, 6, 7, 10, 15, 23, 24, 27, 29, 30, 34, 40, 41], "process": [1, 2, 3, 4, 6, 12, 16, 44], "move": [1, 2, 3, 4, 6, 11, 39, 40, 41], "its": [1, 2, 3, 4, 6, 7, 9, 11, 12, 15, 16, 17, 18, 23, 24, 25, 26, 27, 30, 31, 33, 40, 41], "argument": [1, 2, 3, 4, 6, 25], "node": [1, 2, 3, 4, 6, 21, 28, 38, 42], "where": [1, 2, 3, 4, 6, 9, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 33, 34, 39, 40, 41, 43, 44], "account_key_passphras": [1, 2, 3, 4, 6], "ad": [1, 2, 3, 4, 5, 6, 7, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 29, 30, 34, 39, 40, 41, 42, 43, 44], "6": [1, 2, 3, 4, 5, 6, 8, 11, 14, 16, 18, 21, 22, 23, 24, 30, 31, 35, 36, 38, 39, 40, 41], "phassphras": [1, 2, 3, 4, 5, 6], "decod": [1, 2, 3, 4, 5, 6, 21, 22, 28, 38, 39, 42, 43, 44], "backend": [1, 2, 3, 4, 6, 14, 18, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "alias": [1, 2, 3, 4, 6, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40, 41, 44], "account_kei": [1, 2, 3, 4, 6], "path": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "contain": [1, 2, 3, 4, 5, 6, 7, 12, 14, 16, 17, 18, 23, 24, 25, 26, 27, 30, 31, 34, 40, 44], "creat": [1, 4, 5, 6, 11, 15, 16, 17, 18, 23, 24, 25, 26, 27, 30, 33, 34, 40, 41, 43, 44], "openssl_privatekei": [1, 2, 3, 6, 9, 10, 11, 15, 23, 24, 25, 26, 27, 29, 31, 33, 34, 36, 40, 41], "openssl_privatekey_pip": [1, 2, 3, 6, 15, 23, 24, 27, 29, 30, 34, 40, 41], "If": [1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "requisit": [1, 2, 3, 6], "avail": [1, 2, 3, 4, 6, 8, 10, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 44], "directli": [1, 2, 3, 6, 10, 39, 40], "command": [1, 2, 3, 6, 16, 17], "line": [1, 2, 3, 6, 16], "tool": [1, 2, 3, 4, 6, 23, 24], "genrsa": [1, 2, 3, 6], "ecparam": [1, 2, 3, 4, 6], "genkei": [1, 2, 3, 4, 6], "ani": [1, 2, 3, 4, 6, 9, 10, 11, 17, 18, 23, 24, 25, 26, 27, 30, 31, 34, 40, 41], "other": [1, 2, 3, 4, 6, 11, 17, 18, 23, 24, 26, 30, 31, 38, 39, 43, 44], "pem": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 15, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "format": [1, 2, 3, 4, 5, 6, 7, 11, 14, 15, 16, 17, 18, 21, 22, 26, 27, 28, 29, 30, 31, 34, 39, 40, 41, 43, 44], "well": [1, 2, 3, 4, 6, 12, 26, 27, 30, 31, 34, 40], "account_uri": [1, 2, 3, 4, 6], "assum": [1, 2, 3, 4, 6, 7, 9, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "uri": [1, 2, 3, 4, 6, 21, 22, 23, 24, 28, 38, 39, 42, 43, 44], "given": [1, 2, 3, 4, 5, 6, 15, 16, 23, 24, 35], "doe": [1, 2, 3, 4, 5, 6, 7, 8, 11, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "match": [1, 2, 3, 4, 6, 7, 12, 17, 18, 23, 24, 25, 30, 31, 40, 44], "exist": [1, 2, 3, 4, 5, 6, 9, 11, 16, 17, 18, 23, 24, 25, 26, 27, 30, 31, 34, 40, 41, 44], "fail": [1, 2, 3, 4, 6, 11, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 42, 43, 44], "acme_directori": [1, 2, 3, 4, 6, 40], "directori": [1, 2, 3, 4, 6, 7, 40], "entri": [1, 2, 3, 4, 5, 6, 12, 21, 22, 28, 32, 37, 38, 39, 40, 42, 44], "point": [1, 2, 3, 4, 6, 7, 11, 17, 21, 22, 23, 24, 28, 29, 32, 33, 38, 39, 40, 41, 42, 43, 44], "url": [1, 2, 3, 4, 6], "access": [1, 2, 3, 4, 6, 12, 15, 23, 24, 27, 29, 30, 34, 40, 41, 44], "server": [1, 2, 3, 4, 9, 11, 12, 14, 15, 17, 23, 24, 40, 41], "api": [1, 2, 3, 4, 6, 15, 40, 41], "For": [1, 2, 3, 4, 6, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42], "safeti": [1, 2, 3, 4, 6], "reason": [1, 2, 3, 4, 6, 23, 24, 40, 41, 42, 43, 44], "default": [1, 2, 3, 4, 6, 7, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "set": [1, 2, 3, 4, 5, 6, 11, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "stage": [1, 2, 3, 4, 6, 40], "v1": [1, 2, 3, 4, 6], "technic": [1, 2, 3, 4, 6, 11], "correct": [1, 2, 3, 4, 6, 7, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "untrust": [1, 2, 3, 4, 6, 15], "all": [1, 2, 3, 4, 6, 7, 8, 9, 11, 14, 17, 18, 21, 22, 26, 28, 29, 30, 31, 37, 38, 39, 40, 41, 42, 43, 44], "endpoint": [1, 2, 3, 4, 6], "found": [1, 2, 3, 4, 6, 8, 12], "here": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "http": [1, 2, 3, 4, 5, 6, 11, 12, 14, 17, 23, 24, 30, 40, 41], "letsencrypt": [1, 2, 3, 4, 6, 40], "org": [1, 2, 3, 4, 6, 11, 23, 24, 40, 42, 43, 44], "doc": [1, 2, 3, 4, 6, 9, 10, 30, 40], "environ": [1, 2, 3, 4, 5, 6, 40], "buypass": [1, 2, 3, 4, 6, 40], "com": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 17, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 38, 39, 40, 41, 42, 43, 44], "t": [1, 2, 3, 4, 6, 9, 17, 18, 22, 23, 25, 26, 27, 29, 30, 33, 34, 39, 40, 44], "63d4ai": [1, 2, 3, 4, 6], "go": [1, 2, 3, 4, 6], "ssl": [1, 2, 4, 5, 6, 7, 12, 14, 15, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 39, 40, 41, 43, 44], "product": [1, 2, 3, 4, 6, 11, 31], "v02": [1, 2, 3, 4, 6, 40], "zerossl": [1, 2, 3, 4, 6], "dv90": [1, 2, 3, 4, 6], "sectigo": [1, 2, 3, 4, 6], "qa": [1, 2, 3, 4, 6], "secur": [1, 2, 3, 4, 6, 11, 14, 26, 40, 41], "trust": [1, 2, 3, 4, 6, 42, 43, 44], "provid": [1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 14, 15, 16, 18, 21, 23, 24, 28, 30, 31, 32, 34, 38, 40, 41, 42, 43], "dv": [1, 2, 3, 4, 6], "list": [1, 2, 3, 4, 6, 7, 8, 11, 12, 14, 15, 17, 21, 22, 23, 24, 26, 28, 32, 37, 38, 39, 42], "servic": [1, 2, 3, 4, 6, 15, 40, 41], "test": [1, 2, 3, 4, 6, 11, 12, 18, 21, 22, 38, 39], "against": [1, 2, 3, 4, 6, 11, 14, 17], "acme_vers": [1, 2, 3, 4, 6], "integ": [1, 2, 3, 4, 6, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 38, 39, 40, 41, 42, 43, 44], "must": [1, 2, 3, 4, 5, 6, 9, 11, 12, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44], "classic": [1, 2, 3, 4, 6], "standard": [1, 2, 3, 4, 6, 11], "deprec": [1, 2, 3, 4, 6, 14, 18, 39, 40, 44], "from": [1, 2, 3, 4, 6, 7, 9, 10, 11, 12, 15, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 39, 40, 41, 43, 44], "3": [1, 2, 3, 4, 5, 6, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 26, 27, 29, 30, 31, 33, 34, 38, 39, 40, 41, 44], "choic": [1, 2, 3, 4, 5, 6, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "request_timeout": [1, 2, 3, 4, 6], "time": [1, 2, 3, 4, 6, 11, 12, 14, 16, 17, 21, 22, 26, 28, 29, 32, 33, 38, 39, 40, 41, 42, 43, 44], "should": [1, 2, 3, 4, 5, 6, 8, 11, 12, 14, 17, 18, 21, 22, 23, 24, 25, 26, 27, 30, 31, 34, 38, 39, 40, 41, 43, 44], "wait": [1, 2, 3, 4, 6], "respons": [1, 2, 3, 4, 6, 11], "timeout": [1, 2, 3, 4, 6, 14], "appli": [1, 2, 3, 4, 6, 11, 14, 17, 18], "request": [1, 2, 3, 4, 5, 7, 8, 9, 10, 14, 15, 16, 17, 18, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "head": [1, 2, 3, 4, 6], "get": [1, 2, 3, 4, 6, 11, 15, 17, 18, 22, 23, 25, 26, 27, 29, 30, 33, 34, 39, 40, 43, 44], "post": [1, 2, 3, 4, 6, 11], "10": [1, 2, 3, 4, 6, 10, 14, 15, 16, 17, 18, 21, 28, 30, 31, 32, 34, 37, 38, 39, 40, 41, 42], "retrieve_ord": 1, "whether": [1, 2, 3, 4, 6, 8, 9, 11, 12, 14, 17, 18, 21, 22, 23, 24, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 43, 44], "order": [1, 3, 6, 11, 14, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 37, 38, 39, 40, 42, 43, 44], "object": [1, 3, 6, 15, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "A": [1, 2, 5, 7, 8, 11, 14, 22, 23, 24, 29, 33, 35, 37, 39, 40, 41, 43, 44], "ignor": [1, 2, 3, 7, 11, 17, 18, 21, 22, 23, 24, 26, 28, 31, 37, 38, 39, 40, 41, 42, 43, 44], "fetch": 1, "order_uri": [1, 3, 6], "alwai": [1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 14, 17, 18, 26, 29, 30, 31, 39, 40, 41, 44], "popul": 1, "option": [1, 2, 3, 4, 6, 11, 14, 16, 17, 18, 23, 24, 25, 26, 27, 30, 31, 34, 39, 40, 41, 44], "object_list": 1, "current": [1, 3, 8, 11, 12, 14, 17, 18, 23, 24, 25, 26, 27, 30, 31, 34, 40, 41, 44], "so": [1, 2, 3, 4, 6, 11, 12, 16, 17, 18, 21, 23, 25, 26, 27, 28, 29, 30, 31, 34, 38, 40, 42, 44], "result": [1, 4, 5, 9, 10, 11, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 38, 39, 40, 41, 42, 43, 44], "empti": [1, 3, 8], "url_list": 1, "select_crypto_backend": [1, 2, 3, 4, 6, 14, 22, 23, 24, 25, 26, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41], "determin": [1, 2, 3, 4, 6, 14, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41], "auto": [1, 2, 3, 4, 6, 14, 18, 22, 23, 24, 25, 26, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41], "tri": [1, 2, 3, 4, 6, 7, 14, 22, 23, 24, 25, 26, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41], "fall": [1, 2, 3, 4, 6, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "back": [1, 2, 3, 4, 6, 9, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "try": [1, 2, 3, 4, 6, 7, 8, 14, 16, 22, 23, 24, 25, 26, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41], "binari": [1, 2, 3, 4, 6, 8, 14, 18, 25], "librari": [1, 2, 3, 4, 6, 8, 14, 17, 18, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "validate_cert": [1, 2, 3, 4, 6], "boolean": [1, 2, 3, 4, 6, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 38, 39, 40, 41, 42, 43, 44], "call": [1, 2, 3, 4, 6, 11, 26, 39, 40, 44], "valid": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 15, 17, 21, 22, 23, 24, 35, 36, 39, 40, 41, 44], "tl": [1, 2, 4, 6, 14, 15, 23, 24, 26, 27, 30, 31, 34, 40, 41], "ever": [1, 2, 3, 4, 6], "fals": [1, 2, 3, 4, 6, 8, 9, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 38, 39, 40, 41, 42, 43, 44], "purpos": [1, 2, 3, 4, 6, 11, 23, 24, 40, 41], "local": [1, 2, 3, 4, 6, 11, 12, 21, 28, 38, 40, 41, 42], "pebbl": [1, 2, 3, 4, 6], "true": [1, 2, 3, 4, 6, 8, 9, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 38, 39, 40, 41, 42, 43, 44], "descript": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "action_group": [1, 2, 3, 4, 6], "action": [1, 2, 3, 4, 5, 6, 7, 8, 11, 14, 17, 18, 22, 23, 25, 26, 29, 30, 31, 33, 34, 35, 36, 39, 40, 43, 44], "group": [1, 2, 3, 4, 6, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 32, 33, 34, 38, 39, 40, 44], "module_default": [1, 2, 3, 4, 6], "check_mod": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "full": [1, 2, 3, 7, 8, 11, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "modifi": [1, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "state": [1, 2, 3, 5, 7, 8, 14, 16, 17, 18, 22, 23, 25, 26, 29, 30, 33, 34, 35, 36, 39, 40, 43, 44], "run": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "statu": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "predict": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "target": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "diff_mod": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "n": [1, 5, 6, 7, 8, 14, 22, 29, 33, 35, 39, 43], "Will": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44], "what": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "possibli": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "diff": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "mode": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "acme_account": [1, 3, 15], "acme_account_fact": 1, "befor": [1, 3, 12, 21, 28, 32, 37, 38, 40, 41, 42, 44], "8": [1, 3, 4, 16, 17, 18, 23, 25, 26, 27, 30, 34, 40], "usag": [1, 3, 7, 10, 11, 15, 16, 23, 40, 41, 44], "did": [1, 3, 31], "new": [1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 16, 17, 18, 21, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "enough": [1, 2, 3, 4, 6], "instead": [1, 2, 3, 4, 6, 10, 16, 17, 23, 24, 30, 31, 44], "explicitli": [1, 2, 3, 4, 6, 27, 29, 30], "disabl": [1, 2, 3, 4, 6, 11, 16, 17, 29], "enabl": [1, 2, 3, 4, 6, 11, 17, 23, 24], "slower": [1, 2, 3, 4, 6], "less": [1, 2, 3, 4, 6, 12, 17], "have": [1, 2, 3, 4, 6, 10, 11, 12, 13, 17, 18, 21, 23, 25, 26, 27, 28, 29, 30, 31, 32, 34, 37, 38, 40, 41, 42, 44], "store": [1, 2, 3, 4, 6, 10, 11, 12, 16, 24, 26, 27, 40, 41], "although": [1, 2, 3, 4, 6], "chosen": [1, 2, 3, 4, 6, 26], "principl": [1, 2, 3, 4, 6], "far": [1, 2, 3, 4, 6], "develop": [1, 2, 3, 4, 6, 40], "we": [1, 2, 3, 4, 5, 6, 9, 26, 30, 31], "got": [1, 2, 3, 4, 6], "feedback": [1, 2, 3, 4, 6], "thei": [1, 2, 3, 4, 6, 12, 14, 16, 18, 25, 30, 31, 39, 43], "incommon": [1, 2, 3, 4, 6], "experi": [1, 2, 3, 4, 6], "problem": [1, 2, 3, 4, 6], "anoth": [1, 2, 3, 4, 6, 7, 9, 10, 11, 16, 21, 22, 28, 30, 38, 39, 41, 42, 43, 44], "pleas": [1, 2, 3, 4, 6, 7, 9, 14, 18, 23, 24, 25, 27, 30, 31, 40, 41], "issu": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "help": [1, 2, 3, 4, 6, 11], "u": [1, 2, 3, 4, 6, 17, 18, 23, 25, 26, 27, 30, 34, 40, 41], "mention": [1, 2, 3, 4, 6, 26], "appreci": [1, 2, 3, 4, 6], "name": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "check": [1, 3, 7, 9, 11, 15, 17, 21, 22, 23, 24, 25, 26, 29, 30, 31, 34, 35, 39, 42, 43, 44], "etc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 22, 23, 24, 25, 26, 27, 29, 30, 33, 34, 39, 40, 41, 43, 44], "pki": [1, 2, 3, 4, 5, 6, 8, 12], "cert": [1, 2, 3, 4, 5, 6, 8, 11, 14, 17, 21, 22, 23, 24, 26, 28, 35, 36, 38, 39, 42, 44], "regist": [1, 3, 5, 6, 7, 8, 9, 10, 14, 22, 24, 29, 31, 33, 35, 36, 39, 40, 41, 43], "account_data": 1, "verifi": [1, 7, 12, 15, 36, 40], "builtin": [1, 3, 7, 8, 14, 21, 22, 24, 28, 29, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43], "assert": [1, 35, 36, 39, 40], "print": [1, 24, 37, 41, 43], "debug": [1, 2, 3, 4, 6, 8, 11, 14, 21, 22, 24, 28, 29, 31, 32, 33, 37, 38, 39, 41, 42, 43], "var": [1, 3, 6, 8, 14, 22, 24, 29, 33, 39, 41], "contact": [1, 2, 3, 6], "acme_account_kei": 1, "acme_account_uri": 1, "common": [1, 2, 3, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "document": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "follow": [1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "field": [1, 2, 3, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44], "uniqu": [1, 2, 3, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "dictionari": [1, 2, 3, 5, 6, 8, 11, 14, 16, 21, 22, 23, 24, 28, 29, 30, 31, 32, 33, 34, 38, 39, 42, 43, 44], "element": [1, 2, 3, 7, 8, 11, 12, 14, 17, 21, 22, 23, 24, 26, 28, 29, 32, 33, 37, 38, 39, 42, 43, 44], "challeng": [1, 3, 6, 15, 40], "resourc": [1, 3, 5, 12], "sampl": [1, 3, 4, 5, 6, 8, 11, 12, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 42, 43, 44], "mailto": [1, 2, 6], "me": [1, 2, 6], "tel": 1, "00123456789": 1, "queri": [1, 3, 22, 29, 33, 39], "public_account_kei": 1, "public": [1, 3, 11, 15, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38, 39, 40, 41], "json": [1, 6, 11, 14, 42, 43], "web": [1, 12], "kty": [1, 6], "ec": [1, 3, 15, 40, 41], "crv": 1, "p": [1, 21, 22, 28, 29, 32, 33, 38, 39], "256": [1, 17, 18], "x": [1, 6, 14, 15, 21, 22, 28, 29, 32, 33, 43], "mkbctnickusdii11yss3526idz8aito7tu6kpaqv7d4": 1, "y": [1, 14, 21, 22, 28, 29, 32, 33, 38, 39], "4etl6srw2yilurn5vfvvhuhp7x8pxltmwwlbbm4ifym": 1, "deactiv": [1, 2, 3, 11], "none": [1, 2, 3, 4, 5, 6, 11, 12, 14, 16, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 34, 36, 38, 39], "success": [1, 3, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "error": [1, 3, 4, 6, 8, 11, 16, 40], "occur": [1, 44], "dure": [1, 2, 3, 11, 17, 26], "about": [1, 2, 11, 12, 14, 17, 23, 24, 28, 29], "structur": 1, "rfc7807": 1, "expir": [1, 3, 6, 10, 11, 12, 14, 38, 39, 40, 41, 44], "timestamp": [1, 17, 23, 25, 26, 27, 30, 34, 39, 40, 41, 43, 44], "describ": [1, 21, 23, 24, 28, 32, 37, 38, 42], "rfc3339": [1, 11], "includ": [1, 3, 7, 9, 11, 12, 17, 18, 23, 25, 26, 27, 30, 34, 38, 39, 40, 42, 43, 44], "pend": [1, 11], "give": [1, 17, 18, 23, 25, 26, 27, 30, 34, 40], "expiri": [1, 11, 40, 41], "date": [1, 6, 7, 11, 14, 38, 39, 40, 41, 42, 43, 44], "final": [1, 3], "identifi": [1, 2, 3, 5, 11, 16, 17, 21, 22, 23, 24, 38, 39, 40, 41], "type": [1, 3, 5, 6, 10, 11, 12, 16, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44], "dn": [1, 3, 5, 9, 10, 12, 21, 22, 23, 24, 28, 38, 39, 40, 42, 43, 44], "ip": [1, 3, 5, 14, 21, 22, 23, 24, 38, 39], "hostnam": [1, 14], "address": [1, 2, 3, 5, 11, 12, 17, 21, 22, 28, 38, 39, 42, 43, 44], "wildcard": [1, 3], "actual": [1, 5, 17, 18, 23, 25, 26, 27, 30, 34, 40], "prefix": [1, 2, 23, 24], "notaft": [1, 38, 39], "notbefor": [1, 38, 39], "readi": [1, 11], "invalid": [1, 11, 37, 42, 43, 44], "felix": [1, 2, 4, 5, 6, 7, 8, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 41, 42, 43, 44], "fontein": [1, 2, 4, 5, 6, 7, 8, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 41, 42, 43, 44], "felixfontein": [1, 2, 4, 5, 6, 7, 8, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 41, 42, 43, 44], "tracker": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "repositori": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "sourc": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "submit": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "bug": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "report": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "featur": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "allow_cr": 2, "creation": [2, 3, 6, 16], "present": [2, 3, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 30, 34, 38, 39, 40, 44], "email": [2, 3, 11, 12, 21, 22, 23, 24, 28, 38, 39, 40, 41, 42, 43, 44], "ietf": [2, 3, 6, 23, 24], "html": [2, 3, 6, 23, 24, 30], "rfc8555": [2, 3, 6], "section": [2, 3, 4, 6, 23, 24], "7": [2, 3, 6, 14, 17, 18, 21, 22, 26, 33, 38, 39, 42, 43], "absent": [2, 16, 17, 18, 23, 25, 26, 30, 34, 40, 44], "changed_kei": 2, "external_account_bind": 2, "extern": [2, 3], "bind": [2, 3], "data": [2, 3, 5, 11, 12, 15, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 38, 39, 40, 41, 44], "like": [2, 3, 10, 17, 18, 23, 25, 26, 27, 30, 34, 40, 41], "specif": [2, 3, 4, 5, 6, 10, 11, 12, 16, 23, 24, 26, 39, 40, 41], "properli": [2, 6], "custom": [2, 11, 18], "alg": 2, "mac": [2, 26], "algorithm": [2, 14, 16, 17, 18, 21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 41, 42, 43, 44], "probabl": 2, "hs256": 2, "hs384": 2, "hs512": 2, "base64": [2, 3, 14, 21, 22, 26, 30, 31, 35, 36, 38, 39, 43, 44], "encod": [2, 3, 6, 11, 14, 21, 22, 26, 28, 30, 31, 35, 36, 38, 39, 42, 43, 44], "pad": 2, "symbol": [2, 7, 17, 18, 23, 25, 26, 27, 30, 34, 40], "end": [2, 3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40], "omit": [2, 9, 16, 17, 18], "kid": 2, "new_account_key_cont": 2, "same": [2, 3, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 44], "restrict": [2, 3, 17, 23, 24], "new_account_key_src": 2, "new_account_key_passphras": 2, "inform": [2, 3, 4, 5, 6, 8, 10, 11, 12, 14, 15, 17, 23, 24, 30, 31, 40, 41], "touch": 2, "terms_agre": [2, 3], "indic": [2, 3, 11, 14, 23, 24, 29, 31], "agre": [2, 3], "term": [2, 3, 6], "acme_certif": [2, 5, 6, 7, 15], "do": [2, 3, 6, 9, 10, 11, 12, 16, 17, 18, 23, 25, 26, 27, 29, 30, 31, 34, 40], "basic": [2, 3, 21, 22, 23, 24, 28, 29, 32, 33, 38, 39], "manag": [2, 3, 4, 5, 6, 11, 15, 34], "both": [2, 3, 11, 18, 22, 23, 24, 29, 33, 34, 35, 36, 39, 41, 43, 44], "recommend": [2, 11, 12, 40, 41], "modify_account": [2, 3], "automat": [2, 3, 4, 5, 6, 16, 30, 31, 40], "rfc": [2, 3, 4, 5, 6, 23, 24], "8555": [2, 3, 4, 5, 6], "retriev": [2, 3, 6, 14, 15, 23, 24, 40, 41], "fact": 2, "write": [2, 3, 6, 7, 9, 16, 17, 18, 23, 25, 26, 27, 30, 31, 34, 40, 41, 44], "acme_inspect": [2, 3, 4, 15], "make": [2, 3, 6, 11, 14, 16, 18, 28, 29, 30, 31, 35, 36, 39, 44], "sure": [2, 3, 16, 18, 28, 29, 30, 31, 35, 36, 44], "TOS": 2, "myself": [2, 3], "one": [2, 3, 4, 7, 9, 11, 12, 14, 17, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "variabl": [2, 3, 9, 21, 22, 28, 29, 32, 37, 38, 42], "new_account_kei": 2, "renew": [3, 11], "implement": [3, 31, 40, 41], "01": [3, 6, 11, 15, 17, 30, 31, 34], "alpn": [3, 6, 15], "twice": 3, "two": [3, 23, 24], "differ": [3, 4, 10, 12, 14, 17, 18, 23, 25, 30, 34, 40, 44], "task": [3, 11, 17, 18, 30, 31, 39], "output": [3, 6, 8, 11, 17, 26, 30, 31], "first": [3, 5, 6, 10, 11, 12, 16, 26, 39], "record": [3, 11, 12], "pass": [3, 9, 11], "second": [3, 12, 14, 16, 39, 40, 41, 44], "between": [3, 16, 18], "fulfil": 3, "step": [3, 11, 26], "whatev": 3, "mean": [3, 11, 35], "necessari": [3, 17], "destin": [3, 11, 17, 18, 23, 25, 26, 27, 30, 31, 34, 40], "webserv": 3, "serv": [3, 40], "perform": [3, 11, 12, 16, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40, 44], "how": [3, 5, 12, 14, 15, 21, 22, 23, 24, 28, 30, 38, 39, 40, 42, 43, 44], "read": [3, 9, 16, 17, 18, 23, 25, 26, 27, 30, 31, 34, 35, 36, 40, 41, 44], "through": 3, "main": 3, "consid": [3, 17, 18, 23, 24, 25, 26, 30, 40], "experiment": 3, "accord": [3, 23, 24], "8738": 3, "account_email": 3, "associ": [3, 7, 11, 12], "account": [3, 4, 5, 6, 8, 11, 15], "more": [3, 7, 11, 14, 17, 23, 24, 26, 40, 41, 44], "than": [3, 4, 11, 12, 17, 18, 21, 22, 23, 24, 26, 28, 38, 39, 40, 41, 42, 43, 44], "updat": [3, 6, 12, 17, 18, 23, 25, 26, 27, 30, 31, 34, 40, 44], "most": [3, 16], "agreement": [3, 11, 21, 22, 38, 39], "latest": [3, 30, 44], "gather": 3, "chain_dest": 3, "chain": [3, 11, 14, 15, 40], "intermedi": [3, 7, 11, 26, 31, 40], "some": [3, 4, 14, 16, 31, 35, 36, 42, 43], "assur": 3, "could": [3, 11, 23, 25, 29, 30, 40, 41], "foo": [3, 16, 17], "certain": [3, 17, 39], "period": [3, 40, 41], "csr": [3, 5, 6, 7, 9, 10, 11, 15, 25, 26, 28, 30, 31, 34, 39, 40, 41], "src": [3, 9, 26, 41], "openssl_csr": [3, 10, 11, 15, 22, 24, 25, 26, 30, 31, 34, 40, 41], "req": 3, "mai": [3, 11, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40, 41], "multipl": [3, 9, 10, 11, 15, 21, 22, 23, 24, 26, 28, 29, 32, 33, 38, 39], "subject": [3, 7, 10, 11, 14, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 30, 34, 38, 39, 40, 41, 42, 44], "altern": [3, 10, 11, 23, 24, 40, 41], "each": [3, 9, 11, 21, 28, 30, 31, 32, 34, 37, 38, 42], "lead": [3, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "individu": [3, 17], "sign": [3, 5, 8, 11, 14, 15, 17, 25, 26, 30, 31, 34, 35, 38, 39, 40, 41, 42, 43, 44], "bad": 3, "idea": 3, "view": 3, "precis": 3, "csr_content": [3, 9, 10, 40, 41], "openssl_csr_pip": [3, 9, 10, 15, 22, 23, 30, 31, 34, 40, 41], "ongo": 3, "previou": [3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "non": [3, 8, 11, 17], "activ": [3, 6, 11, 12], "taken": 3, "mark": [3, 23, 24], "no_log": [3, 30, 31], "up": [3, 5, 11, 16, 17, 18, 21, 23, 25, 26, 27, 28, 30, 32, 34, 37, 38, 39, 40, 42], "longer": [3, 16, 23, 24], "wai": [3, 5, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "caus": [3, 14, 17, 18], "messag": 3, "come": 3, "unus": 3, "anywai": 3, "deactivate_authz": 3, "authent": [3, 6, 11, 12, 17, 23, 24, 40, 41], "authz": [3, 6], "after": [3, 16, 40, 41], "bound": 3, "remain": [3, 11, 12, 16, 17], "amount": 3, "re": [3, 12, 14, 18, 21, 22, 23, 24, 25, 26, 30, 31, 34, 38, 39, 40, 41, 44], "domain": [3, 5, 11, 15, 21, 22, 28, 38, 39, 42, 43, 44], "concern": [3, 23, 25, 30, 40], "dest": [3, 5, 7, 9, 24, 41], "fullchain_dest": [3, 6], "forc": [3, 11, 17, 18, 23, 25, 26, 27, 30, 31, 34, 40, 41, 44], "enforc": 3, "even": [3, 4, 11, 16, 17, 18, 25, 26, 30, 34, 40, 41], "remaining_dai": [3, 11], "especi": [3, 30], "addit": [3, 11, 16, 23, 24], "desir": [3, 16], "fullchain": [3, 6, 7], "want": [3, 9, 10, 11, 12, 16, 18, 23, 24, 28, 29, 44], "avoid": [3, 11, 12, 17, 18, 23, 25, 26, 27, 29, 30, 34, 39, 40, 41, 44], "accident": [3, 28, 29, 30, 31], "old": [3, 11, 23, 24, 39, 40, 44], "number": [3, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 38, 39, 40, 41, 42, 43, 44], "dai": [3, 11, 12, 14, 39, 40, 41], "left": [3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "being": [3, 11, 17, 30, 31, 39, 40, 41], "cert_dai": [3, 11], "challenge_data": [3, 5], "retrieve_all_altern": 3, "offer": [3, 9, 10], "These": [3, 15, 21, 23, 24, 28, 38, 42], "togeth": [3, 16, 26], "all_chain": 3, "select_chain": 3, "criteria": 3, "select": [3, 5, 10, 18, 26, 30, 31], "until": [3, 7, 11, 14], "criterium": 3, "header": [3, 5, 6], "determinist": 3, "everi": [3, 11, 12, 18, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 38, 39, 40, 41, 44], "consist": [3, 29], "condit": [3, 14, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "issuer": [3, 7, 14, 21, 22, 23, 24, 38, 39, 40, 42, 43, 44], "authority_key_identifi": [3, 21, 22, 23, 24, 38, 39], "authoritykeyidentifi": [3, 21, 22, 23, 24, 38, 39], "extens": [3, 5, 6, 14, 18, 21, 22, 23, 24, 38, 39, 42, 43, 44], "base": [3, 11, 16, 17, 30, 31], "form": [3, 7, 11, 38, 39], "c4": 3, "a7": 3, "b1": [3, 30, 31, 34], "a4": 3, "7b": 3, "2c": [3, 30, 31, 34], "71": [3, 30, 31, 34], "fa": 3, "db": 3, "e1": [3, 30, 31, 34], "4b": 3, "90": [3, 11, 12, 40, 41], "75": [3, 30, 31, 34], "ff": [3, 21, 22, 23, 24, 28, 29, 32, 33, 38, 39], "15": [3, 6, 11, 26, 40, 41], "60": [3, 11, 12, 30, 31, 34], "85": [3, 30, 31, 34], "89": 3, "would": [3, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "commonnam": [3, 21, 22, 23, 24, 38, 39, 40, 42, 43, 44], "my": [3, 30, 43, 44], "prefer": [3, 21, 22, 28, 38, 39, 42, 43, 44], "root": [3, 11, 14, 15, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "cn": [3, 9, 11, 14, 23, 24, 44], "subject_key_identifi": [3, 21, 22, 23, 24, 38, 39], "subjectkeyidentifi": [3, 21, 22, 38, 39], "a8": 3, "4a": [3, 21, 22, 28, 29, 32, 33, 38, 39], "6a": [3, 30, 31, 34], "63": [3, 11, 21, 22, 28, 29, 32, 33, 38, 39], "04": [3, 21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "7d": [3, 44], "dd": [3, 17, 21, 22, 23, 24, 30, 31, 34, 38, 39], "ba": [3, 21, 22, 28, 29, 32, 33, 38, 39], "e6": [3, 21, 22, 28, 29, 32, 33, 38, 39], "d1": 3, "39": [3, 30, 31, 34], "b7": 3, "a6": [3, 30, 31, 34], "45": 3, "65": 3, "ef": [3, 30, 31, 34], "f3": 3, "a1": [3, 30, 31, 34], "test_certif": 3, "exclud": [3, 17, 21, 22, 23, 24], "leaf": [3, 7], "ident": [3, 17], "last": [3, 16, 21, 22, 38, 39, 42, 43, 44], "furthest": 3, "awai": 3, "Its": 3, "safe_file_oper": [3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "strict": [3, 6, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "oper": [3, 11, 16, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "function": [3, 11, 16, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "ensur": [3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "proper": [3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "permiss": [3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "corrupt": [3, 11, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40, 44], "At": [3, 17], "least": [3, 11, 23, 24, 35, 36], "control": [3, 6, 12, 14, 21, 28, 31, 38, 42, 43], "over": 3, "rate": [3, 4], "limit": [3, 4, 16, 17], "8737": [3, 5, 6], "acme_challenge_cert_help": [3, 15], "prepar": [3, 15], "certificate_complete_chain": [3, 15], "find": [3, 7, 12], "acme_certificate_revok": [3, 15], "account_private_kei": 3, "httpd": [3, 4, 5, 6], "crt": [3, 4, 5, 6, 11, 12, 39, 40, 41, 44], "sample_com_challeng": [3, 5], "hashi": 3, "vault": [3, 16, 31], "lookup": [3, 7, 21, 24, 28, 31, 32, 37, 38, 41, 42], "hashi_vault": 3, "secret": [3, 30], "copi": [3, 7, 9, 11, 12, 24, 40, 41], "www": [3, 7, 9, 10, 11, 14, 17, 21, 22, 23, 24, 38, 39, 40, 41], "resource_valu": 3, "item": [3, 5, 23, 37], "loop": [3, 5, 37], "dict2item": 3, "v01": 3, "30": [3, 11, 30, 31, 34], "aw": 3, "route53": 3, "zone": 3, "txt": [3, 12, 17], "ttl": 3, "enclos": 3, "quot": [3, 17, 18, 23, 25, 26, 27, 30, 34, 40], "regex_replac": [3, 23], "map": [3, 11, 23, 39], "challenge_data_dn": 3, "dst": 3, "x3": 3, "cross": 3, "identrust": 3, "As": [3, 17, 18, 23, 25, 26, 27, 30, 34, 40], "long": [3, 12, 14], "switch": 3, "own": [3, 9, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40, 41, 44], "isrg": 3, "x1": 3, "compat": [3, 11, 14, 17, 26], "older": [3, 16, 26, 27, 30, 31, 34, 40], "client": [3, 11, 12, 14, 17, 23, 24, 40, 41, 42, 43, 44], "o": [3, 11, 14, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40], "digit": 3, "signatur": [3, 7, 15, 17, 21, 22, 23, 24, 36, 38, 39, 40, 42, 43, 44], "co": 3, "4": [3, 4, 8, 14, 16, 21, 22, 23, 24, 26, 34, 35, 36, 38, 39, 40], "itself": [3, 44], "concaten": [3, 7], "full_chain": 3, "token": [3, 17], "a5b1c3d2e9f8g7h6": 3, "12345": [3, 6, 21, 22, 38, 39], "2022": [3, 26], "08": [3, 11, 30, 31, 34], "01t01": 3, "02": [3, 11], "34z": 3, "04t01": 3, "03": [3, 11, 23, 25, 26, 27, 30, 34, 40, 44], "45z": 3, "per": [3, 26], "yet": [3, 6], "_acm": 3, "known": [3, 11, 12, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 32, 33, 34, 38, 39, 40, 42, 43, 44], "evagxfads6psrb2lav9izf17dt3juxgj": 3, "pct92wr": 3, "oa": 3, "resource_origin": 3, "origin": [3, 11, 14, 21, 22, 23, 25, 26, 27, 30, 34, 38, 39, 40, 44], "produc": 3, "blob": 3, "put": 3, "acmevalid": 3, "x509": 3, "editor": 3, "rfc8737": 3, "b64decod": [3, 9, 41], "jinja": 3, "filter": [3, 22, 29, 33, 39, 43], "extract": [3, 14, 21, 22, 28, 38, 39, 44], "ilirfxkkxa": 3, "17dt3juxgj": 3, "finalization_uri": 3, "michael": 3, "gruener": 3, "mgruener": 3, "exactli": [4, 14, 18, 21, 22, 27, 38, 39], "private_key_src": [4, 5], "private_key_cont": [4, 5, 23, 24, 26, 34], "valu": 4, "private_key_passphras": [4, 5, 27], "revoke_reason": 4, "One": [4, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 44], "revoc": [4, 11, 15, 23, 24, 42], "reasoncod": 4, "defin": [4, 10, 11, 12, 13, 16, 23, 24, 30, 31, 40, 41, 44], "rfc5280": [4, 23, 24], "possibl": [4, 11, 14, 21, 22, 38, 39], "unspecifi": [4, 17, 18, 23, 25, 26, 27, 30, 34, 40, 42, 43, 44], "keycompromis": 4, "cacompromis": 4, "affiliationchang": 4, "supersed": [4, 23, 24, 42, 43, 44], "cessationofoper": 4, "certificatehold": 4, "removefromcrl": 4, "9": [4, 14, 15, 18, 30, 31, 39, 40], "privilegewithdrawn": 4, "aacompromis": 4, "return": 4, "alreadi": [4, 11, 12, 16, 17, 18, 23, 24, 25, 26, 30, 34, 40, 41, 43, 44], "unchang": [4, 16], "depend": [4, 8, 11, 14, 21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "raw": [5, 6, 14, 27, 30, 31], "convert": [5, 15, 18, 21, 22, 28, 30, 31, 38, 39, 42, 43, 44], "simpl": [5, 9, 10], "gener": [5, 7, 11, 15, 16, 21, 22, 27, 29, 33, 35, 36, 38, 39, 43], "dictsort": 5, "sample_com_challenge_cert": 5, "regular_certif": 5, "deliv": 5, "regular": [5, 6], "connect": [5, 6, 14], "except": [5, 6, 14, 18, 21, 22, 23, 24, 26, 30, 31, 38, 39, 44], "challenge_certif": 5, "achiev": 5, "veri": [5, 10, 43], "nginx": [5, 6], "search": 5, "ssl_preread": 5, "ssl_preread_alpn_protocol": 5, "rout": 5, "private_kei": [5, 17, 31], "identifier_typ": 5, "self": [5, 9, 15, 23, 24, 39, 40, 41], "place": [5, 21, 22, 28, 29, 32, 33, 38, 39], "attempt": [6, 18], "encount": 6, "wish": 6, "investig": 6, "sent": [6, 12], "method": [6, 12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "otherwis": [6, 11, 14, 16, 17, 18, 21, 22, 23, 25, 26, 27, 30, 34, 38, 39, 40, 42, 43, 44], "fail_on_acme_error": 6, "id": [6, 11, 12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "localhost": [6, 14, 23, 41], "m": [6, 14, 17, 23, 24, 39, 40, 41, 44], "acct": 6, "newaccount": 6, "termsofserviceagre": 6, "account_cr": 6, "locat": [6, 11, 12, 40, 43, 44], "account_info": 6, "to_json": 6, "certificate_request": 6, "someth": [6, 26, 39], "went": 6, "wrong": 6, "output_json": 6, "selectattr": 6, "equalto": 6, "http01challeng": 6, "manual": [6, 12], "a85k3x9f91a4": 6, "random": [6, 12], "33417": 6, "keychang": 6, "meta": 6, "caaident": 6, "termsofservic": 6, "le": 6, "sa": 6, "novemb": 6, "2017": 6, "pdf": 6, "websit": 6, "newnonc": 6, "nonc": 6, "neword": 6, "revokecert": 6, "lowercas": 6, "boulder": 6, "cach": 6, "max": 6, "ag": 6, "close": [6, 16], "length": [6, 18, 40], "904": 6, "applic": [6, 11, 12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "cooki": 6, "cookies_str": 6, "wed": 6, "07": [6, 21, 22, 28, 29, 32, 33, 38, 39], "nov": 6, "2018": [6, 11], "12": [6, 14, 15, 23, 24, 25, 30, 31, 34, 40, 41], "34": [6, 21, 22, 28, 29, 32, 33, 38, 39], "56": [6, 30, 31, 34], "gmt": [6, 40, 41], "44": [6, 21, 22, 23, 24, 38, 39], "rel": [6, 17, 23, 24, 39, 40, 41, 44], "msg": [6, 14, 21, 28, 31, 32, 37, 38, 42, 43], "ok": 6, "byte": [6, 16, 21, 22, 23, 24, 38, 39], "pragma": 6, "replai": 6, "1234567890abcdefghijklmnopqrstuvwxyzabcdefgh": 6, "200": 6, "transport": [6, 29], "604800": 6, "46161": 6, "frame": 6, "deni": 6, "pars": [6, 7, 14, 21, 22, 26, 29, 38, 39], "output_text": 6, "text": [6, 11, 12], "see": [7, 9, 14, 16, 17, 18, 44], "note": [7, 9, 16, 17, 21, 22, 25, 26, 27, 28, 29, 30, 31, 38, 42], "input_chain": 7, "intermediate_certif": 7, "filenam": [7, 11, 17, 18, 23, 25, 26, 30, 34, 40, 44], "subdirectori": 7, "scan": 7, "root_certif": 7, "www_ansible_com": 7, "completechain": 7, "join": [7, 14, 21, 28, 38], "complete_chain": 7, "rootchain": 7, "input": [7, 12, 26], "python": [8, 14, 21, 22, 25, 26, 28, 29, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "crypto_inform": 8, "show": [8, 9, 10, 21, 28, 31, 32, 38, 40, 42], "openssl_pres": 8, "usr": [8, 17, 18, 23, 25, 26, 27, 30, 34, 40], "bin": [8, 17, 18, 23, 25, 26, 27, 30, 34, 40], "1m": 8, "version_output": 8, "dec": 8, "2021": 8, "python_cryptography_cap": 8, "python_cryptography_instal": 8, "theoret": 8, "higher": [8, 11, 21, 28, 32, 37, 38, 42], "libssl": 8, "has_dsa": 8, "dsa": [8, 10, 18, 21, 22, 28, 29, 30, 31, 32, 33, 35, 36, 38, 39], "has_dsa_sign": 8, "has_ec": 8, "has_ec_sign": 8, "has_ed25519": 8, "ed25519": [8, 18, 21, 22, 28, 29, 30, 31, 32, 33, 35, 36, 38, 39], "has_ed25519_sign": 8, "has_ed448": 8, "ed448": [8, 21, 22, 28, 29, 30, 31, 32, 33, 35, 36, 38, 39], "has_ed448_sign": 8, "has_rsa": 8, "has_rsa_sign": 8, "has_x25519": 8, "x25519": [8, 10, 21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "has_x25519_seri": 8, "serial": [8, 11, 14, 17, 21, 22, 23, 24, 38, 39, 42, 43, 44], "has_x448": 8, "x448": [8, 21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "python_cryptography_import_error": 8, "commun": [9, 10], "crypto": [9, 10], "guid": [9, 10], "exampl": [9, 10], "password": [9, 10, 11, 12, 16, 18, 23, 24, 26, 36, 40, 41, 44], "protect": [9, 10, 16, 18, 23, 24, 30, 31, 34, 36, 40, 41, 44], "secret_ca_passphras": 9, "instruct": [9, 12], "ask": 9, "pai": 9, "commerci": [9, 23, 24], "passphras": [9, 10, 16, 18, 23, 24, 26, 27, 28, 29, 30, 31, 34, 36, 40, 41, 44], "privatekey_path": [9, 10, 22, 23, 24, 26, 33, 34, 35, 36, 39, 40, 41, 44], "privatekey_passphras": [9, 10, 23, 24, 26, 34, 36, 40, 41, 44], "common_nam": [9, 10, 22, 23, 24], "use_common_name_for_san": [9, 23, 24], "san": [9, 10, 11, 23, 24], "don": 9, "basic_constraint": [9, 21, 22, 23, 24, 38, 39], "basic_constraints_crit": [9, 21, 22, 23, 24, 38, 39], "key_usag": [9, 21, 22, 23, 24, 38, 39, 40], "keycertsign": 9, "key_usage_crit": [9, 21, 22, 23, 24, 38, 39], "ca_csr": 9, "x509_certif": [9, 10, 12, 15, 20, 23, 24, 25, 26, 30, 31, 34, 35, 39, 41], "selfsign": [9, 10, 39, 40, 41], "x509_certificate_pip": [9, 15, 23, 24, 30, 31, 34, 39, 40], "server_1": 9, "while": [9, 11, 12, 30, 31, 40, 41], "our": [9, 41], "server_2": 9, "materi": [9, 29, 31], "leav": [9, 29], "respect": [9, 16, 21, 23, 24, 28, 32, 38], "delegate_to": [9, 14, 41], "run_onc": [9, 14], "subject_alt_nam": [9, 10, 11, 21, 22, 23, 24, 28, 38, 39, 40], "ownca": [9, 40, 41], "ownca_path": [9, 40, 41], "ownca_privatekey_path": [9, 40, 41], "ownca_privatekey_passphras": [9, 40, 41], "ownca_not_aft": [9, 40, 41], "365d": [9, 40, 41], "year": [9, 10, 11, 40, 41], "ownca_not_befor": [9, 40, 41], "1d": [9, 30, 31, 34, 39], "yesterdai": 9, "abov": 9, "procedur": 9, "idempot": [9, 16, 17, 26, 31, 40, 41, 44], "extend": [9, 11], "stat": 9, "certificate_exist": 9, "slurp": [9, 41], "els": [9, 26], "kind": 10, "start": [10, 21, 22, 28, 29, 32, 33, 38, 39, 40, 41], "paramet": [10, 15, 32, 37], "4096": [10, 18, 25, 29, 30, 31, 33], "bit": [10, 18, 21, 22, 25, 28, 29, 30, 31, 32, 33, 38, 39], "size": [10, 12, 16, 18, 21, 22, 25, 28, 29, 30, 31, 32, 33, 38, 39], "changem": 10, "proce": 10, "selfsigned_not_aft": [10, 40, 41], "roughli": 10, "selfsigned_not_befor": [10, 40, 41], "now": [10, 11, 17, 40, 41, 44], "properti": 10, "constraint": [10, 23, 24], "organization_nam": [10, 23, 24], "inc": [10, 11], "reissu": 11, "credenti": [11, 12, 40, 41], "organ": [11, 42], "system": [11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "those": [11, 17, 18, 23, 25, 26, 27, 30, 34, 40], "pyyaml": [11, 12], "11": [11, 12, 14, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 38, 39, 40, 44], "additional_email": 11, "receiv": [11, 12, 17, 18, 23, 25, 26, 27, 30, 34, 40], "deliveri": 11, "notic": 11, "notif": 11, "backup": [11, 18, 23, 25, 26, 27, 30, 31, 34, 40, 44], "made": [11, 12, 17], "cert_expiri": 11, "compliant": 11, "2020": [11, 17, 18, 23, 25, 26, 27, 30, 34, 40], "23": 11, "23t15": 11, "00": [11, 17, 21, 22, 23, 24, 30, 31, 34, 38, 39, 40, 41], "05z": 11, "request_typ": 11, "issuanc": [11, 40, 41], "subsequ": 11, "initi": [11, 14], "month": [11, 40, 41], "choos": 11, "adjust": [11, 18, 40, 41], "eastern": 11, "est": [11, 40, 41], "unintend": 11, "effect": 11, "pool": 11, "inventori": 11, "model": 11, "cert_lifetim": 11, "lifetim": [11, 40, 41], "cert_typ": 11, "cds_individu": 11, "cds_group": 11, "cds_ent_lit": [11, 40, 41], "cds_ent_pro": [11, 40, 41], "smime_": [11, 40, 41], "p1y": 11, "p2y": 11, "p3y": 11, "standard_ssl": [11, 40, 41], "advantage_ssl": [11, 40, 41], "uc_ssl": [11, 40, 41], "ev_ssl": [11, 40, 41], "wildcard_ssl": [11, 40, 41], "private_ssl": [11, 40, 41], "pd_ssl": [11, 40, 41], "code_sign": 11, "ev_code_sign": 11, "client_id": [11, 12], "under": [11, 12], "primari": [11, 12], "cannot": [11, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 44], "distinguish": 11, "repres": 11, "64": 11, "around": [11, 29], "overrid": [11, 21, 28, 32, 37, 38, 42], "eku": 11, "ou": [11, 14, 23, 24], "organiz": 11, "unit": 11, "replac": [11, 31, 44], "ti": 11, "ct_log": 11, "complianc": 11, "browser": 11, "transpar": 11, "ct": 11, "log": [11, 17, 28, 29, 30, 31], "best": [11, 17, 18, 23, 25, 26, 27, 30, 34, 40], "practic": 11, "techniqu": 11, "owner": [11, 12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "monitor": 11, "elig": [11, 12], "custom_field": 11, "date1": 11, "date2": 11, "date3": 11, "date4": 11, "date5": 11, "dropdown1": 11, "dropdown": 11, "dropdown2": 11, "dropdown3": 11, "dropdown4": 11, "dropdown5": 11, "email1": 11, "email2": 11, "email3": 11, "email4": 11, "email5": 11, "number1": 11, "float": [11, 16], "number2": 11, "number3": 11, "number4": 11, "number5": 11, "text1": 11, "maximum": [11, 21, 22, 28, 29, 32, 33, 38, 39, 40, 41], "500": 11, "charact": 11, "text10": 11, "text11": 11, "text12": 11, "text13": 11, "text14": 11, "text15": 11, "text2": 11, "text3": 11, "text4": 11, "text5": 11, "text6": 11, "text7": 11, "text8": 11, "text9": 11, "server_auth": 11, "client_auth": 11, "server_and_client_auth": 11, "end_user_key_storage_agr": 11, "user": [11, 15, 16, 18, 23, 25, 26, 27, 30, 34, 40, 44], "code": 11, "cryptograph": [11, 15], "hardwar": 11, "csp": 11, "subscript": 11, "acknowledg": 11, "entrust_api_client_cert_key_path": [11, 12, 40, 41], "entrust_api_client_cert_path": [11, 12, 40, 41], "entrust_api_kei": [11, 12, 40, 41], "entrust_api_specification_path": [11, 12, 40, 41], "configur": [11, 12, 13, 16, 17, 18, 21, 23, 25, 26, 27, 28, 30, 31, 32, 34, 37, 38, 40, 41, 42, 44], "keep": [11, 12, 30, 40, 41], "download": [11, 12, 40, 41], "cloud": [11, 12, 40, 41], "net": [11, 12, 40, 41], "entrustcloud": [11, 12, 40, 41], "cm": [11, 12, 40, 41], "yaml": [11, 12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 41], "entrust_api_us": [11, 12, 40, 41], "usernam": [11, 12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 41, 44], "regardless": 11, "within": [11, 12], "past": [11, 38, 39], "full_chain_path": 11, "unless": [11, 12, 16, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "behavior": [11, 18, 26, 30, 31, 40], "neither": 11, "nor": 11, "reus": 11, "unapprov": 11, "failur": [11, 14], "reserv": 11, "futur": 11, "calcul": 11, "tracking_id": 11, "obtain": [11, 12], "act": [11, 17], "upon": [11, 21, 22, 28, 29, 32, 33, 38, 39], "exmapl": 11, "refer": 11, "validate_onli": 11, "cautiou": 11, "along": 11, "requester_email": 11, "track": [11, 40, 41], "requester_nam": 11, "requester_phon": 11, "phone": [11, 40, 41], "arrai": 11, "subjectaltnam": [11, 23, 24], "understand": [11, 16], "tld": 11, "save": [11, 25], "referenc": 11, "tracking_info": 11, "free": 11, "attach": [11, 23, 24], "partial": 11, "bare": 11, "minimum": [11, 18, 40, 41], "jo": [11, 40], "jdoe": [11, 23, 40], "555": [11, 40], "5555": [11, 40], "apiusernam": [11, 12, 40], "lv": [11, 12, 40], "32": [11, 12, 17, 21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40], "cd9lnt": [11, 12, 40], "20": [11, 23], "79": [11, 30, 31, 34], "migrat": 11, "2378915": 11, "rather": 11, "overridden": [11, 25, 26], "testcertif": 11, "administr": [11, 12], "via": [11, 40], "itsupport": 11, "jsmith": 11, "admin": [11, 12], "invoic": 11, "25": [11, 30, 31, 34], "342": 11, "sale": 11, "red": 11, "backup_fil": [11, 23, 25, 26, 27, 30, 34, 40, 44], "2019": [11, 17, 23, 25, 26, 27, 30, 34, 40, 41, 44], "09": [11, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 44], "22": [11, 21, 22, 23, 24, 25, 26, 27, 30, 31, 34, 38, 39, 40, 44], "backup_full_chain_fil": 11, "253": 11, "cert_detail": 11, "guarante": 11, "forward": [11, 17], "releas": [11, 17], "take": [11, 17, 18, 21, 22, 23, 25, 28, 29, 30, 32, 33, 34, 38, 39, 40, 42, 43, 44], "howev": [11, 16, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "audit": 11, "cert_statu": 11, "expand": 11, "approv": [11, 12], "declin": [11, 12], "na": 11, "pending_quorum": 11, "suspend": 11, "serial_numb": [11, 14, 17, 38, 39, 42, 43, 44], "1235262234164342": 11, "380079": 11, "chri": [11, 12], "trufan": [11, 12], "ctrufan": [11, 12], "verification_method": 12, "domain_statu": 12, "dns_content": 12, "dns_locat": 12, "dns_resource_typ": 12, "web_serv": 12, "file_cont": 12, "file_loc": 12, "e": [12, 23, 24], "were": [12, 14], "pure": 12, "domain_nam": 12, "reverifi": 12, "verification_email": 12, "ownership": [12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "whoi": 12, "construct": 12, "webmast": 12, "hostmast": 12, "postmast": 12, "subdomain": 12, "top": 12, "level": [12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "example1": 12, "example2": 12, "preconstruct": 12, "namespac": 12, "exact": [12, 44], "verif": 12, "prove": 12, "There": [12, 16], "small": [12, 15], "delai": 12, "typic": 12, "Be": 12, "awar": 12, "mani": [12, 14, 44], "ecs_certif": [12, 15], "revalid": 12, "fewer": [12, 40, 41], "ev": 12, "belong": [12, 23, 24], "expect": [12, 30, 31, 39, 40, 41, 44], "ab23cd41432522ff2526920393982fab": 12, "_pki": 12, "cancel": 12, "initial_verif": 12, "re_verif": 12, "ev_days_remain": 12, "submiss": 12, "never": [12, 14, 17, 18, 30, 31, 40, 41, 44], "greater": [12, 17], "ov_days_remain": 12, "ev_elig": 12, "94": [12, 21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "ov_elig": 12, "abcd": 12, "ov": 12, "129": 12, "declar": 13, "core": [13, 15], "No": 13, "sni": 14, "proxy_host": 14, "asn1_base64": 14, "asn": [14, 21, 22, 38, 39, 40, 41, 42, 43, 44], "claim": 14, "eventu": 14, "ca_cert": [14, 41], "cipher": [14, 16, 30, 31], "libressl": 14, "fine": 14, "proxi": 14, "proxy_port": 14, "8080": 14, "server_nam": 14, "starttl": 14, "mysql": 14, "succe": 14, "rdp": 14, "3389": 14, "googl": 14, "443": 14, "expire_dai": 14, "not_aft": [14, 38, 39, 40], "to_datetim": 14, "d": [14, 17, 39, 40, 41, 44], "h": [14, 17, 39, 40, 41, 44], "sz": 14, "ansible_date_tim": 14, "iso8601": 14, "dt": 14, "asn1_data": 14, "surviv": 14, "also": [14, 17, 18, 44], "displai": [14, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "github": [14, 15], "80258": 14, "usual": [14, 17, 21, 22, 38, 39], "malform": [14, 21, 22, 38, 39], "critic": [14, 21, 22, 23, 24, 38, 39, 42, 43, 44], "not_befor": [14, 38, 39, 40], "signature_algorithm": [14, 17, 38, 39, 40], "john": 14, "westcott": 14, "iv": 14, "author": 15, "newer": [15, 17, 30, 31, 35, 36], "matrix": 15, "room": 15, "im": 15, "question": 15, "irc": 15, "channel": [15, 29], "libera": 15, "network": 15, "mail": 15, "project": 15, "subscrib": 15, "acm": [15, 40], "requir": [15, 32, 37], "send": [15, 26, 42, 43], "direct": 15, "crypto_info": 15, "capabl": 15, "entrust": [15, 40, 41], "ecs_domain": 15, "get_certif": 15, "port": [15, 17], "luks_devic": 15, "luk": 15, "devic": 15, "openssh_cert": 15, "openssh": [15, 34], "openssh_keypair": [15, 34], "openssl_csr_info": [15, 23, 24, 40], "openssl_dhparam": [15, 23, 24, 26, 30, 31, 34, 40, 41], "diffi": [15, 23, 24, 26, 30, 31, 34, 40, 41], "hellman": [15, 23, 24, 26, 30, 31, 34, 40, 41], "openssl_pkcs12": [15, 23, 24, 25, 30, 31, 34, 40, 41], "pkc": [15, 17, 23, 24, 25, 30, 31, 34, 40, 41], "archiv": [15, 23, 24, 25, 30, 31, 34, 40, 41], "openssl_privatekey_convert": 15, "openssl_privatekey_info": [15, 30, 31, 33, 40], "openssl_publickei": [15, 23, 24, 25, 26, 27, 30, 31, 33, 40, 41], "openssl_publickey_info": 15, "openssl_signatur": [15, 35], "openssl_signature_info": [15, 36], "x509_certificate_info": [15, 19, 40], "509": [15, 43], "x509_crl": [15, 43], "crl": [15, 23, 24], "x509_crl_info": 15, "split_pem": 15, "split": 15, "destroi": 16, "open": 16, "cryptsetup": 16, "wipef": 16, "lsblk": 16, "blkid": 16, "label": [16, 21, 22, 28, 38, 39, 42, 43, 44], "uuid": 16, "pre": [16, 26], "kernel": 16, "ae": [16, 30, 31, 34], "plain": 16, "spec": 16, "essiv": 16, "cbc": 16, "sha256": [16, 18, 21, 22, 23, 24, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 41, 44], "dev": 16, "sda1": 16, "force_remove_last_kei": 16, "bewar": 16, "hash": [16, 21, 22, 28, 29, 32, 33, 38, 39], "setup": 16, "scheme": 16, "volum": 16, "digest": [16, 23, 24, 40, 41, 42, 43, 44], "keyfil": 16, "unlock": 16, "plaintext": 16, "danger": 16, "keysiz": [16, 30], "luks2": 16, "later": 16, "luks1": 16, "new_keyfil": 16, "add": [16, 17, 18, 23, 25, 26, 27, 30, 34, 40], "keyslot": 16, "new_passphras": 16, "pbkdf": 16, "deriv": 16, "argon2i": 16, "argon2id": 16, "pbkdf2": 16, "iteration_count": 16, "iter": 16, "count": 16, "iteration_tim": 16, "millisecond": 16, "memori": 16, "cost": 16, "kilobyt": 16, "argon": 16, "parallel": 16, "thread": 16, "perf_no_read_workqueu": 16, "bypass": 16, "dm": 16, "crypt": 16, "intern": 16, "workqueu": 16, "synchron": 16, "perf_no_write_workqueu": 16, "perf_same_cpu_crypt": 16, "cpu": 16, "io": 16, "unbound": 16, "balanc": 16, "perf_submit_from_crypt_cpu": 16, "offload": 16, "separ": [16, 17, 21, 22, 23, 24, 38, 39], "situat": [16, 18, 30, 31], "block": [16, 31], "singl": 16, "degrad": 16, "significantli": 16, "persist": 16, "metadata": 16, "them": [16, 25, 34], "next": [16, 29], "remove_keyfil": 16, "filesystem": [16, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "remove_passphras": 16, "sector_s": 16, "sector": 16, "lock": 16, "suffic": 16, "explicit": 16, "With": 16, "loop0": 16, "mycrypt": 16, "keyfile2": 16, "personallabelnam": 16, "03ecd578": 16, "fad4": 16, "4e6c": 16, "9348": 16, "842e3e8fa340": 16, "suppli": 16, "c1da9a58": 16, "2fde": 16, "4256": 16, "9d9f": 16, "6ab008b4dd1b": 16, "jan": 16, "pokorni": 16, "japokorn": 16, "regener": [17, 18, 23, 24, 25, 26, 30, 31, 34, 40, 41, 44], "ssh": [17, 18], "keygen": [17, 18], "attr": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "flag": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "look": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "man": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "page": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "chattr": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "lsattr": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "equival": [17, 18, 30], "fed": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "chown": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "preserv": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "ignore_timestamp": [17, 40, 41, 44], "valid_from": 17, "valid_to": 17, "meet": 17, "chmod": [17, 18, 23, 25, 26, 27, 30, 34, 40], "rememb": [17, 18, 23, 25, 26, 27, 30, 34, 40], "octal": [17, 18, 23, 25, 26, 27, 30, 34, 40], "zero": [17, 18, 23, 25, 26, 27, 30, 34, 40], "parser": [17, 18, 23, 25, 26, 27, 30, 34, 40], "0644": [17, 18, 23, 25, 26, 27, 30, 34, 40], "01777": [17, 18, 23, 25, 26, 27, 30, 34, 40], "644": [17, 18, 23, 25, 26, 27, 30, 34, 40], "1777": [17, 18, 23, 25, 26, 27, 30, 34, 40], "convers": [17, 18, 23, 25, 26, 27, 30, 34, 40], "rule": [17, 18, 23, 25, 26, 27, 30, 34, 40], "decim": [17, 18, 23, 25, 26, 27, 30, 34, 40], "unexpect": [17, 18, 23, 25, 26, 27, 30, 34, 40], "rwx": [17, 18, 23, 25, 26, 27, 30, 34, 40], "rw": [17, 18, 23, 25, 26, 27, 30, 34, 40], "g": [17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 32, 33, 34, 38, 39, 40], "r": [17, 18, 22, 23, 25, 26, 27, 29, 30, 33, 34, 39, 40], "umask": [17, 18, 23, 25, 26, 27, 30, 34, 40], "newli": [17, 18, 23, 25, 26, 27, 30, 34, 40], "cve": [17, 18, 23, 25, 26, 27, 30, 34, 40], "1736": [17, 18, 23, 25, 26, 27, 30, 34, 40], "clear": 17, "shell": 17, "agent": 17, "permit": [17, 21, 22, 23, 24], "pty": 17, "alloc": 17, "rc": 17, "sshd": 17, "x11": 17, "address_list": 17, "comma": 17, "netmask": 17, "pair": [17, 23, 24, 44], "cidr": 17, "numer": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "confus": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "pkcs11_provid": 17, "resid": 17, "share": 17, "libpkcs11": 17, "signing_kei": 17, "princip": 17, "By": [17, 18, 23, 25, 26, 27, 30, 31, 34, 40, 44], "public_kei": [17, 18, 21, 22, 28, 29, 38, 39, 40], "unread": 17, "partial_idempot": [17, 18, 30, 31], "valid_at": [17, 39, 40], "full_idempot": [17, 18, 30, 31], "compar": 17, "selevel": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "selinux": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "context": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "ml": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "mc": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "sometim": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "rang": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "_default": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "portion": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "polici": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "keyrevocationlist": 17, "again": [17, 42, 43], "serol": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "role": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "setyp": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "seuser": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "sha": 17, "refus": 17, "sha2": 17, "512": 17, "correspond": [17, 18, 30, 31], "sshd_config": 17, "casignaturealgorithm": 17, "keyword": [17, 31, 39, 40], "prior": 17, "unsafe_writ": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "influenc": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "atom": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "prevent": [17, 18, 23, 25, 26, 27, 29, 30, 34, 40, 44], "inconsist": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "just": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "broken": [17, 18, 23, 25, 26, 27, 30, 31, 34, 40, 44], "docker": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "mount": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "insid": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "unsaf": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "manner": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "doesn": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "race": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "use_ag": 17, "interpret": [17, 39, 40, 41, 44], "utc": [17, 39, 40, 41, 43, 44], "mainli": 17, "timespec": [17, 39, 40, 41, 44], "NOT": [17, 31, 40, 41, 44], "absolut": [17, 22, 29, 33, 39, 40, 41, 43, 44], "yyyi": 17, "mm": 17, "ddthh": 17, "ss": 17, "hh": 17, "w": [17, 22, 29, 33, 39, 40, 41, 44], "32w1d2h": [17, 39, 40, 41, 44], "1970": 17, "01t00": 17, "earlier": [17, 40, 41], "express": 17, "comparison": 17, "forev": 17, "pub": [17, 18, 33], "week": [17, 39], "32w": 17, "2w": 17, "examplehost": 17, "21": 17, "2001": 17, "tmp": [17, 18, 35, 36], "bla": 17, "ca_public_kei": 17, "info": [17, 21, 22, 38, 39], "l": [17, 23, 24], "f": 17, "david": [17, 18], "kainz": [17, 18], "lolcub": [17, 18], "rsa1": 18, "ecdsa": [18, 35, 36], "opensshbin": 18, "decrypt": [18, 26], "private_key_format": 18, "pkcs1": [18, 27, 30, 31], "keypair": 18, "pkcs8": [18, 27, 30, 31], "conform": [18, 30, 31], "unknown": [18, 21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "therefor": 18, "1024": 18, "2048": [18, 25, 26, 30, 31], "suffici": 18, "fip": 18, "186": 18, "three": [18, 39, 40, 41, 44], "384": 18, "521": 18, "fix": 18, "id_ssh_rsa": 18, "super_secret_password": 18, "id_ssh_dsa": 18, "fingerprint": [18, 21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "r4yczxihvjedh2olfjvgi6y5xaytdcwk8vxkyzvyyfm": 18, "aaaab3nza": 18, "vel4e3xcw": 18, "name_encod": [21, 22, 28, 38, 39, 42, 43, 44], "idna": [21, 22, 28, 38, 39, 42, 43, 44], "key1": [21, 28, 38, 42], "value1": [21, 28, 38, 42], "key2": [21, 28, 38, 42], "value2": [21, 28, 38, 42], "idna2008": [21, 22, 28, 38, 39, 42, 43, 44], "idna2003": [21, 22, 28, 38, 39, 42, 43, 44], "unicod": [21, 22, 28, 38, 39, 42, 43, 44], "alt": [21, 28, 38], "authority_cert_issu": [21, 22, 23, 24, 38, 39], "idn": [21, 22, 38, 39, 42, 43, 44], "handl": [21, 22, 38, 39, 42, 43, 44], "authority_cert_serial_numb": [21, 22, 23, 24, 38, 39], "hexadecim": [21, 22, 38, 39], "33": [21, 22, 23, 24, 28, 29, 30, 31, 32, 33, 34, 38, 39], "55": [21, 22, 23, 24, 38, 39], "66": [21, 22, 23, 24, 30, 31, 34, 38, 39], "77": [21, 22, 23, 24, 30, 31, 34, 38, 39], "88": [21, 22, 23, 24, 30, 31, 34, 38, 39], "99": [21, 22, 23, 24, 30, 31, 34, 38, 39], "aa": [21, 22, 23, 24, 28, 29, 32, 33, 38, 39], "bb": [21, 22, 23, 24, 38, 39], "cc": [21, 22, 23, 24, 30, 31, 34, 38, 39], "ee": [21, 22, 23, 24, 30, 31, 34, 38, 39], "pathlen": [21, 22, 38, 39], "extended_key_usag": [21, 22, 23, 24, 38, 39, 40], "biometr": [21, 22, 38, 39], "dvc": [21, 22, 38, 39, 40], "stamp": [21, 22, 38, 39], "extended_key_usage_crit": [21, 22, 23, 24, 38, 39], "extensions_by_oid": [21, 22, 38, 39, 40], "oid": [21, 22, 38, 39], "24": [21, 22, 30, 31, 34, 38, 39], "mamcaqu": [21, 22, 38, 39], "der": [21, 22, 38, 39, 42, 43, 44], "encipher": [21, 22, 23, 24, 38, 39, 40], "name_constraints_crit": [21, 22, 23, 24], "name_constraint": [21, 22], "name_constraints_exclud": [21, 22, 23, 24], "subtre": [21, 22, 23, 24], "name_constraints_permit": [21, 22, 23, 24], "somedomain": [21, 22, 23, 24], "ocsp_must_stapl": [21, 22, 23, 24, 38, 39], "ocsp": [21, 22, 23, 24, 38, 39], "stapl": [21, 22, 23, 24, 38, 39], "ocsp_must_staple_crit": [21, 22, 23, 24, 38, 39], "begin": [21, 22, 28, 29, 38, 39], "miicijanbgkqhkig9w0baqefaaocag8a": [21, 28, 38], "public_key_data": [21, 22, 38, 39], "ecc": [21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "_valu": [21, 28, 32, 38], "public_key_typ": [21, 22, 38, 39], "expon": [21, 22, 28, 29, 32, 33, 38, 39], "exponent_s": [21, 22, 28, 29, 32, 33, 38, 39], "subgroup": [21, 22, 28, 29, 32, 33, 38, 39], "span": [21, 22, 28, 29, 32, 33, 38, 39], "prime": [21, 22, 28, 29, 32, 33, 38, 39], "modulu": [21, 22, 28, 29, 32, 33, 38, 39], "arithmet": [21, 22, 28, 29, 32, 33, 38, 39], "q": [21, 22, 28, 29, 32, 33, 38, 39], "divid": [21, 22, 28, 29, 32, 33, 38, 39], "coordin": [21, 22, 28, 29, 32, 33, 38, 39], "publicli": [21, 22, 28, 29, 32, 33, 38, 39], "whose": [21, 22, 28, 29, 32, 33, 38, 39, 41], "discret": [21, 22, 28, 29, 32, 33, 38, 39], "logarithm": [21, 22, 28, 29, 32, 33, 38, 39], "public_key_fingerprint": [21, 22, 28, 29, 38, 39], "comput": [21, 22, 28, 29, 32, 33, 38, 39], "d4": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "b3": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "6d": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "c8": [21, 22, 28, 29, 32, 33, 38, 39], "ce": [21, 22, 28, 29, 32, 33, 38, 39], "4e": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "f6": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "29": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "4d": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "92": [21, 22, 28, 29, 32, 33, 38, 39], "a3": [21, 22, 28, 29, 32, 33, 38, 39], "b0": [21, 22, 28, 29, 32, 33, 38, 39], "c2": [21, 22, 28, 29, 32, 33, 38, 39], "bd": [21, 22, 28, 29, 32, 33, 38, 39], "bf": [21, 22, 28, 29, 32, 33, 38, 39], "43": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "0f": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "51": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "95": [21, 22, 28, 29, 32, 33, 38, 39], "2f": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "sha512": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "f7": [21, 22, 28, 29, 32, 33, 38, 39], "f0": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "8b": [21, 22, 28, 29, 32, 33, 38, 39], "5f": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "f9": [21, 22, 28, 29, 32, 33, 38, 39], "61": [21, 22, 28, 29, 32, 33, 38, 39], "0a": [21, 22, 28, 29, 32, 33, 38, 39], "68": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "f1": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "signature_valid": [21, 22], "repeat": [21, 22, 26, 38, 39, 42, 43, 44], "emailaddress": [21, 22, 23, 24, 38, 39], "subject_alt_name_crit": [21, 22, 23, 24, 38, 39], "subject_ord": [21, 22, 23, 24, 38, 39, 40], "tupl": [21, 22, 23, 24, 38, 39, 42, 43, 44], "low": [21, 28, 32, 37, 38, 42], "high": [21, 28, 32, 37, 38, 42], "prioriti": [21, 28, 32, 37, 38, 42], "lower": [21, 28, 32, 37, 38, 42], "interact": [22, 29, 33, 39, 40, 41], "remot": [22, 29, 33, 39, 40, 41, 43, 44], "load": [22, 27, 29, 33, 39], "variant": [22, 29, 33, 39, 43], "dump": [22, 26, 29, 33, 39], "nmiicijanbgkqhkig9w0baqefaaocag8a": [22, 29, 39], "yani": [22, 23, 24, 29, 30, 31, 34, 39, 40, 41], "guenan": [22, 23, 24, 29, 30, 31, 34, 39, 40, 41], "spredzi": [22, 23, 24, 29, 30, 31, 34, 39, 40, 41], "seem": [23, 24, 40], "overwrit": [23, 25, 30, 40], "keyusag": [23, 24], "extendedkeyusag": [23, 24], "basicconstraint": [23, 24], "That": [23, 24], "rid": [23, 24], "dirnam": [23, 24], "othernam": [23, 24], "ones": [23, 24, 25], "mostli": [23, 24], "hex": [23, 24], "colon": [23, 24], "overwrot": [23, 25, 26, 27, 30, 34, 40, 44], "accid": [23, 25, 26, 27, 30, 34, 40, 44], "basicconstraints_crit": [23, 24], "country_nam": [23, 24], "c": [23, 24], "countrynam": [23, 24], "create_subject_key_identifi": [23, 24], "crl_distribution_point": [23, 24], "distribut": [23, 24], "crl_issuer": [23, 24], "full_nam": [23, 24], "relative_nam": [23, 24], "key_compromis": [23, 24, 42, 43, 44], "ca_compromis": [23, 24, 42, 43, 44], "affiliation_chang": [23, 24, 42, 43, 44], "cessation_of_oper": [23, 24, 42, 43, 44], "certificate_hold": [23, 24, 42, 43, 44], "privilege_withdrawn": [23, 24, 42, 43, 44], "aa_compromis": [23, 24, 42, 43, 44], "email_address": [23, 24], "extkeyusag": [23, 24], "extkeyusage_crit": [23, 24], "extendedkeyusage_crit": [23, 24], "keyusage_crit": [23, 24], "locality_nam": [23, 24], "localitynam": [23, 24], "ocspmuststapl": [23, 24], "rfc7633": [23, 24], "ocspmuststaple_crit": [23, 24], "reject": [23, 24], "organizationnam": [23, 24, 38, 39, 42, 43, 44], "organizational_unit_nam": [23, 24], "organizationalunitnam": [23, 24], "privatekey_cont": [23, 24, 26, 34, 36, 40, 41, 44], "return_cont": [23, 25, 26, 30, 34, 40, 44], "state_or_province_nam": [23, 24], "st": [23, 24], "stateorprovincenam": [23, 24], "compon": [23, 24, 44], "subjectaltname_crit": [23, 24], "row": [23, 24, 44], "usecommonnameforsan": [23, 24], "fill": [23, 24], "2986": [23, 24], "unsupport": [23, 24], "inlin": [23, 24, 34, 41], "fr": 23, "dynam": 23, "with_dict": 23, "dns_server": 23, "special": 23, "digitalsignatur": [23, 24], "keyagr": [23, 24], "clientauth": [23, 24], "winrm": 23, "auth": 23, "311": 23, "utf8": 23, "pathlenconstraint": [23, 24], "privatekei": [23, 24, 26, 27, 30, 31, 34, 44], "dh": 25, "param": 25, "detect": [25, 26], "Or": 25, "dhparam": 25, "thom": 25, "wigger": 25, "thomwigg": 25, "pyopenssl": 26, "iter_s": 26, "maciter_s": 26, "export": [26, 27, 30, 31], "certificate_path": [26, 35, 36], "encryption_level": 26, "compatibility2022": 26, "softwar": 26, "38": [26, 30, 31, 34], "friendly_nam": 26, "friendli": 26, "50000": 26, "other_certif": 26, "ca_certif": 26, "other_certificates_parse_al": 26, "pkcs12": 26, "mechan": 26, "safe": 26, "addition": 26, "backward": 26, "opt": 26, "p12": 26, "raclett": 26, "ca_bundl": 26, "bundl": [26, 37], "0600": [26, 27, 30], "regen": 26, "guillaum": 26, "delpierr": 26, "gdelpierr": 26, "dest_passphras": 27, "dest_path": 27, "src_content": 27, "src_path": 27, "src_passphras": 27, "return_private_key_data": [28, 29], "private_data": [28, 29], "public_data": [28, 29, 32, 33], "fake": 29, "key_is_consist": 29, "check_consist": 29, "potenti": 29, "side": 29, "attack": 29, "machin": [29, 40, 41], "can_load_kei": 29, "can_parse_kei": 29, "eddsa": [30, 31], "particular": 30, "maxim": [30, 31], "interoper": [30, 31], "secp384r1": [30, 31], "secp256r1": [30, 31], "iana": [30, 31], "registri": [30, 31], "secp224r1": [30, 31], "secp256k1": [30, 31], "secp521r1": [30, 31], "discourag": [30, 31], "secp192r1": [30, 31], "brainpoolp256r1": [30, 31], "brainpoolp384r1": [30, 31], "brainpoolp512r1": [30, 31], "sect163k1": [30, 31], "sect163r2": [30, 31], "sect233k1": [30, 31], "sect233r1": [30, 31], "sect283k1": [30, 31], "sect283r1": [30, 31], "sect409k1": [30, 31], "sect409r1": [30, 31], "sect571k1": [30, 31], "sect571r1": [30, 31], "tradit": [30, 31], "auto_ignor": [30, 31], "mismatch": [30, 31], "format_mismatch": [30, 31], "everyth": [30, 31, 44], "treat": [30, 39, 44], "appropri": 30, "care": 30, "shown": 30, "reference_appendic": 30, "faq": 30, "minim": [30, 31], "hashlib": [30, 31, 34], "md5": [30, 31, 34], "84": [30, 31, 34], "72": [30, 31, 34], "8d": [30, 31, 34], "b5": [30, 31, 34], "6c": [30, 31, 34], "37": [30, 31, 34], "83": [30, 31, 34], "f5": [30, 31, 34], "4c": [30, 31, 34], "sha1": [30, 31, 34], "7c": [30, 31, 34], "5d": [30, 31, 34], "eb": [30, 31, 34], "41": [30, 31, 34], "7e": [30, 31, 34], "1a": [30, 31, 34], "c7": [30, 31, 34], "f8": [30, 31, 34], "sha224": [30, 31, 34], "19": [30, 31, 34], "ac": [30, 31, 34], "ed": [30, 31, 34], "18": [30, 31, 34, 40, 41], "50": [30, 31, 34], "d3": [30, 31, 34], "06": [30, 31, 34, 40, 41], "5c": [30, 31, 34], "b2": [30, 31, 34], "91": [30, 31, 34], "52": [30, 31, 34], "8c": [30, 31, 34], "cb": [30, 31, 34], "d5": [30, 31, 34], "e9": [30, 31, 34], "9b": [30, 31, 34], "46": [30, 31, 34], "ab": [30, 31, 34], "70": [30, 31, 34], "cf": [30, 31, 34], "76": [30, 31, 34], "4f": [30, 31, 34], "57": [30, 31, 34], "6e": [30, 31, 34], "97": [30, 31, 34], "df": [30, 31, 34], "de": [30, 31, 34], "sha384": [30, 31, 34], "d9": [30, 31, 34], "40": [30, 31, 34], "59": [30, 31, 34], "c3": [30, 31, 34], "a2": [30, 31, 34], "e4": [30, 31, 34], "0b": [30, 31, 34], "1c": [30, 31, 34], "0c": [30, 31, 34], "9e": [30, 31, 34], "af": [30, 31, 34], "da": [30, 31, 34], "2e": [30, 31, 34], "c0": [30, 31, 34], "9a": [30, 31, 34], "3a": [30, 31, 34], "3d": [30, 31, 34], "fd": [30, 31, 34], "5e": [30, 31, 34], "48": [30, 31, 34], "9f": [30, 31, 34], "fe": [30, 31, 34], "7f": [30, 31, 34], "3f": [30, 31, 34], "cd": [30, 31, 34], "a5": [30, 31, 34], "e7": [30, 31, 34], "13": [30, 31, 34, 44], "82": [30, 31, 34], "87": [30, 31, 34], "1f": [30, 31, 34], "28": [30, 31, 34], "53": [30, 31, 34], "86": [30, 31, 34], "69": [30, 31, 34], "35": [30, 31, 34], "1e": [30, 31, 34], "consol": 31, "relat": 31, "content_base64": 31, "return_current_kei": 31, "value_specified_in_no_log_paramet": 31, "async": 31, "reveal": 31, "TO": 31, "OR": 31, "IN": 31, "mozilla": 31, "sop": 31, "sops_encrypt": 31, "content_text": 31, "overwritten": 31, "set_fact": 31, "publickei": 34, "certificate_cont": [35, 41], "example_fil": [35, 36], "sig": [35, 36], "patrick": [35, 36], "pichler": [35, 36], "aveexi": [35, 36], "marku": [35, 36, 39, 40, 41], "teufelberg": [35, 36, 39, 40, 41], "markusteufelberg": [35, 36, 39, 40, 41], "word": [38, 39, 43], "whole": [38, 39], "issuer_ord": [38, 39, 42, 43, 44], "issuer_uri": [38, 39], "20190413202428z": [38, 39, 40, 42, 43, 44], "20190331202428z": [38, 39, 40, 44], "ocsp_uri": [38, 39], "respond": [38, 39], "1234": [38, 39, 42, 43, 44], "sha256withrsaencrypt": [38, 39, 40, 42, 43, 44], "openssl_certificate_info": 39, "short": [39, 40], "redirect": [39, 40], "fqcn": [39, 40], "dict": 39, "pattern": [39, 40, 41, 43, 44], "yyyymmddhhmmssz": [39, 40, 41, 43, 44], "csr_path": [39, 40, 41], "tomorrow": 39, "point_1": 39, "point_2": 39, "3w": 39, "notion": [40, 41], "openssl_certif": 40, "intend": [40, 41], "tini": 40, "acme_accountkey_path": 40, "accountkei": 40, "acme_chain": 40, "acme_challenge_path": 40, "3chost": 40, "3e": 40, "80": 40, "job": 40, "entrust_cert_typ": [40, 41], "entrust_not_aft": [40, 41], "stop": [40, 41], "365": [40, 41], "cover": [40, 41], "entrust_requester_email": [40, 41], "entrust_requester_nam": [40, 41], "entrust_requester_phon": [40, 41], "better": [40, 41], "ownca_cont": [40, 41], "ownca_create_authority_key_identifi": [40, 41], "ownca_create_subject_key_identifi": [40, 41], "ski": [40, 41], "create_if_not_provid": [40, 41], "always_cr": [40, 41], "never_cr": [40, 41], "ownca_digest": [40, 41], "On": [40, 41], "maco": [40, 41], "onward": [40, 41], "825": [40, 41], "appl": [40, 41], "en": [40, 41], "ht210176": [40, 41], "3650d": [40, 41], "ownca_privatekey_cont": [40, 41], "resp": [40, 41], "ownca_vers": [40, 41], "nowadai": [40, 41], "almost": [40, 41], "emul": 40, "selfsigned_create_subject_key_identifi": [40, 41], "selfsigned_digest": [40, 41], "selfsigned_notaft": [40, 41], "selfsigned_notbefor": [40, 41], "selfsigned_vers": [40, 41], "minut": [40, 41, 44], "mandatori": [40, 41, 44], "dedic": [40, 41], "onc": [40, 41, 44], "ansible_ca": 40, "assertonli": 40, "invalid_at": 40, "valid_in": 40, "one_day_ten_hour": 40, "1d10h": 40, "fixed_timestamp": 40, "20200331202428z": 40, "ten_second": 40, "result_csr": 40, "result_privatekei": 40, "sha512withrsaencrypt": 40, "subject_strict": 40, "issuer_strict": 40, "has_expir": 40, "key_usage_strict": 40, "extended_key_usage_strict": 40, "subject_alt_name_strict": 40, "ownca_cert": 41, "ownca_privatekei": 41, "hunter2": 41, "the_csr": 41, "list_revoked_certif": [42, 43], "larg": [42, 43], "enumer": [42, 43], "last_upd": [42, 43, 44], "next_upd": [42, 43, 44], "revoked_certif": [42, 43, 44], "invalidity_d": [42, 43, 44], "suspect": [42, 43, 44], "compromis": [42, 43, 44], "becam": [42, 43, 44], "invalidity_date_crit": [42, 43, 44], "issuer_crit": [42, 43, 44], "remove_from_crl": [42, 43, 44], "reason_crit": [42, 43, 44], "revocation_d": [42, 43, 44], "crl_mode": 44, "interest": 44, "collis": 44, "combin": 44, "2345": 44, "20191013152910z": 44, "20191001000000z": 44, "20191010010203z": 44}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"commun": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "crypto": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "acme_account_fact": 0, "acme_account_info": 1, "modul": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "retriev": [1, 8, 21, 28, 32, 38, 42, 43], "inform": [1, 21, 22, 28, 29, 32, 33, 38, 39, 42, 43], "acm": [1, 2, 3, 4, 5, 6], "account": [1, 2], "synopsi": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "requir": [1, 2, 3, 4, 5, 6, 7, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "paramet": [1, 2, 3, 4, 5, 6, 7, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "attribut": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "note": [1, 2, 3, 4, 6, 11, 12, 14, 18, 23, 24, 35, 36, 39, 40, 41, 43, 44], "see": [1, 2, 3, 4, 5, 6, 11, 12, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43], "also": [1, 2, 3, 4, 5, 6, 11, 12, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43], "exampl": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "return": [1, 2, 3, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "valu": [1, 2, 3, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "author": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "collect": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "link": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "acme_account": 2, "creat": [2, 3, 9, 10], "modifi": 2, "delet": 2, "acme_certif": 3, "ssl": [3, 11], "tl": [3, 5, 11], "certif": [3, 4, 5, 7, 9, 10, 11, 12, 14, 17, 21, 22, 23, 24, 38, 39, 40, 41, 43, 44], "protocol": [3, 4], "acme_certificate_revok": 4, "revok": 4, "acme_challenge_cert_help": 5, "prepar": 5, "challeng": 5, "alpn": 5, "01": 5, "acme_inspect": 6, "send": 6, "direct": 6, "request": [6, 11, 12, 21, 22, 23, 24], "an": [6, 34], "server": 6, "certificate_complete_chain": 7, "complet": 7, "chain": 7, "given": 7, "set": [7, 9], "untrust": 7, "root": 7, "crypto_info": 8, "cryptograph": 8, "capabl": 8, "how": [9, 10], "small": 9, "ca": 9, "up": 9, "us": 9, "sign": [9, 10, 21, 22, 23, 24, 36], "self": 10, "ecs_certif": 11, "entrust": [11, 12], "servic": [11, 12], "ec": [11, 12], "api": [11, 12], "ecs_domain": 12, "valid": 12, "domain": 12, "index": [13, 15], "all": 13, "environ": 13, "variabl": 13, "get_certif": 14, "get": 14, "from": [14, 21, 28, 32, 34, 38, 42], "host": [14, 17], "port": 14, "descript": 15, "scenario": 15, "guid": 15, "plugin": 15, "filter": [15, 21, 28, 32, 37, 38, 42], "luks_devic": 16, "manag": 16, "encrypt": 16, "luk": 16, "devic": 16, "openssh_cert": 17, "gener": [17, 18, 23, 24, 25, 26, 30, 31, 34, 40, 41, 44], "openssh": [17, 18], "user": 17, "openssh_keypair": 18, "privat": [18, 27, 28, 29, 30, 31, 34], "public": [18, 32, 33, 34], "kei": [18, 27, 28, 29, 30, 31, 32, 33, 34], "openssl_certificate_info": 19, "openssl_certif": 20, "openssl_csr_info": [21, 22], "openssl": [21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 39, 40, 41], "csr": [21, 22, 23, 24], "input": [21, 28, 32, 37, 38, 42], "keyword": [21, 28, 38, 42], "provid": [22, 29, 33, 39], "openssl_csr": 23, "openssl_csr_pip": 24, "openssl_dhparam": 25, "diffi": 25, "hellman": 25, "openssl_pkcs12": 26, "pkc": 26, "12": 26, "archiv": 26, "openssl_privatekey_convert": 27, "convert": 27, "openssl_privatekey_info": [28, 29], "openssl_privatekei": 30, "openssl_privatekey_pip": 31, "without": 31, "disk": 31, "access": 31, "openssl_publickey_info": [32, 33], "pem": [32, 37, 38, 42], "format": [32, 38, 42], "openssl_publickei": 34, "its": 34, "openssl_signature_info": 35, "verifi": 35, "signatur": 35, "openssl_signatur": 36, "data": 36, "split_pem": 37, "split": 37, "file": 37, "content": 37, "multipl": 37, "object": 37, "x509_certificate_info": [38, 39], "x": [38, 39, 42], "509": [38, 39, 42], "x509_certif": 40, "check": [40, 41], "x509_certificate_pip": 41, "x509_crl_info": [42, 43], "crl": [42, 43, 44], "revoc": [43, 44], "list": [43, 44], "x509_crl": 44}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 57}, "alltitles": {"community.crypto.acme_account_facts": [[0, "community-crypto-acme-account-facts"]], "community.crypto.acme_account_info module \u2013 Retrieves information on ACME accounts": [[1, "community-crypto-acme-account-info-module-retrieves-information-on-acme-accounts"]], "Synopsis": [[1, "synopsis"], [2, "synopsis"], [3, "synopsis"], [4, "synopsis"], [5, "synopsis"], [6, "synopsis"], [7, "synopsis"], [8, "synopsis"], [11, "synopsis"], [12, "synopsis"], [14, "synopsis"], [16, "synopsis"], [17, "synopsis"], [18, "synopsis"], [21, "synopsis"], [22, "synopsis"], [23, "synopsis"], [24, "synopsis"], [25, "synopsis"], [26, "synopsis"], [27, "synopsis"], [28, "synopsis"], [29, "synopsis"], [30, "synopsis"], [31, "synopsis"], [32, "synopsis"], [33, "synopsis"], [34, "synopsis"], [35, "synopsis"], [36, "synopsis"], [37, "synopsis"], [38, "synopsis"], [39, "synopsis"], [40, "synopsis"], [41, "synopsis"], [42, "synopsis"], [43, "synopsis"], [44, "synopsis"]], "Requirements": [[1, "requirements"], [2, "requirements"], [3, "requirements"], [4, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [11, "requirements"], [12, "requirements"], [14, "requirements"], [16, "requirements"], [17, "requirements"], [18, "requirements"], [21, "requirements"], [22, "requirements"], [23, "requirements"], [24, "requirements"], [25, "requirements"], [26, "requirements"], [27, "requirements"], [28, "requirements"], [29, "requirements"], [30, "requirements"], [31, "requirements"], [33, "requirements"], [34, "requirements"], [35, "requirements"], [36, "requirements"], [38, "requirements"], [39, "requirements"], [40, "requirements"], [41, "requirements"], [42, "requirements"], [43, "requirements"], [44, "requirements"]], "Parameters": [[1, "parameters"], [2, "parameters"], [3, "parameters"], [4, "parameters"], [5, "parameters"], [6, "parameters"], [7, "parameters"], [11, "parameters"], [12, "parameters"], [14, "parameters"], [16, "parameters"], [17, "parameters"], [18, "parameters"], [22, "parameters"], [23, "parameters"], [24, "parameters"], [25, "parameters"], [26, "parameters"], [27, "parameters"], [29, "parameters"], [30, "parameters"], [31, "parameters"], [33, "parameters"], [34, "parameters"], [35, "parameters"], [36, "parameters"], [39, "parameters"], [40, "parameters"], [41, "parameters"], [43, "parameters"], [44, "parameters"]], "Attributes": [[1, "attributes"], [2, "attributes"], [3, "attributes"], [4, "attributes"], [5, "attributes"], [6, "attributes"], [7, "attributes"], [8, "attributes"], [11, "attributes"], [12, "attributes"], [14, "attributes"], [16, "attributes"], [17, "attributes"], [18, "attributes"], [22, "attributes"], [23, "attributes"], [24, "attributes"], [25, "attributes"], [26, "attributes"], [27, "attributes"], [29, "attributes"], [30, "attributes"], [31, "attributes"], [33, "attributes"], [34, "attributes"], [35, "attributes"], [36, "attributes"], [39, "attributes"], [40, "attributes"], [41, "attributes"], [43, "attributes"], [44, "attributes"]], "Notes": [[1, "notes"], [2, "notes"], [3, "notes"], [4, "notes"], [6, "notes"], [11, "notes"], [12, "notes"], [14, "notes"], [18, "notes"], [23, "notes"], [24, "notes"], [35, "notes"], [36, "notes"], [39, "notes"], [40, "notes"], [41, "notes"], [43, "notes"], [44, "notes"]], "See Also": [[1, "see-also"], [2, "see-also"], [3, "see-also"], [4, "see-also"], [5, "see-also"], [6, "see-also"], [11, "see-also"], [12, "see-also"], [21, "see-also"], [22, "see-also"], [23, "see-also"], [24, "see-also"], [25, "see-also"], [26, "see-also"], [27, "see-also"], [28, "see-also"], [29, "see-also"], [30, "see-also"], [31, "see-also"], [32, "see-also"], [33, "see-also"], [34, "see-also"], [35, "see-also"], [36, "see-also"], [38, "see-also"], [39, "see-also"], [40, "see-also"], [41, "see-also"], [42, "see-also"], [43, "see-also"]], "Examples": [[1, "examples"], [2, "examples"], [3, "examples"], [4, "examples"], [5, "examples"], [6, "examples"], [7, "examples"], [8, "examples"], [11, "examples"], [12, "examples"], [14, "examples"], [16, "examples"], [17, "examples"], [18, "examples"], [21, "examples"], [22, "examples"], [23, "examples"], [24, "examples"], [25, "examples"], [26, "examples"], [27, "examples"], [28, "examples"], [29, "examples"], [30, "examples"], [31, "examples"], [32, "examples"], [33, "examples"], [34, "examples"], [35, "examples"], [36, "examples"], [37, "examples"], [38, "examples"], [39, "examples"], [40, "examples"], [41, "examples"], [42, "examples"], [43, "examples"], [44, "examples"]], "Return Values": [[1, "return-values"], [2, "return-values"], [3, "return-values"], [5, "return-values"], [6, "return-values"], [7, "return-values"], [8, "return-values"], [11, "return-values"], [12, "return-values"], [14, "return-values"], [16, "return-values"], [17, "return-values"], [18, "return-values"], [22, "return-values"], [23, "return-values"], [24, "return-values"], [25, "return-values"], [26, "return-values"], [27, "return-values"], [29, "return-values"], [30, "return-values"], [31, "return-values"], [33, "return-values"], [34, "return-values"], [35, "return-values"], [36, "return-values"], [39, "return-values"], [40, "return-values"], [41, "return-values"], [43, "return-values"], [44, "return-values"]], "Authors": [[1, "authors"], [2, "authors"], [3, "authors"], [4, "authors"], [5, "authors"], [6, "authors"], [7, "authors"], [8, "authors"], [11, "authors"], [12, "authors"], [14, "authors"], [16, "authors"], [17, "authors"], [18, "authors"], [21, "authors"], [22, "authors"], [23, "authors"], [24, "authors"], [25, "authors"], [26, "authors"], [27, "authors"], [28, "authors"], [29, "authors"], [30, "authors"], [31, "authors"], [32, "authors"], [33, "authors"], [34, "authors"], [35, "authors"], [36, "authors"], [37, "authors"], [38, "authors"], [39, "authors"], [40, "authors"], [41, "authors"], [42, "authors"], [43, "authors"], [44, "authors"]], "Collection links": [[1, "collection-links"], [2, "collection-links"], [3, "collection-links"], [4, "collection-links"], [5, "collection-links"], [6, "collection-links"], [7, "collection-links"], [8, "collection-links"], [11, "collection-links"], [12, "collection-links"], [14, "collection-links"], [16, "collection-links"], [17, "collection-links"], [18, "collection-links"], [21, "collection-links"], [22, "collection-links"], [23, "collection-links"], [24, "collection-links"], [25, "collection-links"], [26, "collection-links"], [27, "collection-links"], [28, "collection-links"], [29, "collection-links"], [30, "collection-links"], [31, "collection-links"], [32, "collection-links"], [33, "collection-links"], [34, "collection-links"], [35, "collection-links"], [36, "collection-links"], [37, "collection-links"], [38, "collection-links"], [39, "collection-links"], [40, "collection-links"], [41, "collection-links"], [42, "collection-links"], [43, "collection-links"], [44, "collection-links"]], "community.crypto.acme_account module \u2013 Create, modify or delete ACME accounts": [[2, "community-crypto-acme-account-module-create-modify-or-delete-acme-accounts"]], "community.crypto.acme_certificate module \u2013 Create SSL/TLS certificates with the ACME protocol": [[3, "community-crypto-acme-certificate-module-create-ssl-tls-certificates-with-the-acme-protocol"]], "community.crypto.acme_certificate_revoke module \u2013 Revoke certificates with the ACME protocol": [[4, "community-crypto-acme-certificate-revoke-module-revoke-certificates-with-the-acme-protocol"]], "community.crypto.acme_challenge_cert_helper module \u2013 Prepare certificates required for ACME challenges such as tls-alpn-01": [[5, "community-crypto-acme-challenge-cert-helper-module-prepare-certificates-required-for-acme-challenges-such-as-tls-alpn-01"]], "community.crypto.acme_inspect module \u2013 Send direct requests to an ACME server": [[6, "community-crypto-acme-inspect-module-send-direct-requests-to-an-acme-server"]], "community.crypto.certificate_complete_chain module \u2013 Complete certificate chain given a set of untrusted and root certificates": [[7, "community-crypto-certificate-complete-chain-module-complete-certificate-chain-given-a-set-of-untrusted-and-root-certificates"]], "community.crypto.crypto_info module \u2013 Retrieve cryptographic capabilities": [[8, "community-crypto-crypto-info-module-retrieve-cryptographic-capabilities"]], "How to create a small CA": [[9, "how-to-create-a-small-ca"]], "Set up the CA": [[9, "set-up-the-ca"]], "Use the CA to sign a certificate": [[9, "use-the-ca-to-sign-a-certificate"]], "How to create self-signed certificates": [[10, "how-to-create-self-signed-certificates"]], "community.crypto.ecs_certificate module \u2013 Request SSL/TLS certificates with the Entrust Certificate Services (ECS) API": [[11, "community-crypto-ecs-certificate-module-request-ssl-tls-certificates-with-the-entrust-certificate-services-ecs-api"]], "community.crypto.ecs_domain module \u2013 Request validation of a domain with the Entrust Certificate Services (ECS) API": [[12, "community-crypto-ecs-domain-module-request-validation-of-a-domain-with-the-entrust-certificate-services-ecs-api"]], "Index of all Collection Environment Variables": [[13, "index-of-all-collection-environment-variables"]], "community.crypto.get_certificate module \u2013 Get a certificate from a host:port": [[14, "community-crypto-get-certificate-module-get-a-certificate-from-a-host-port"]], "Community.Crypto": [[15, "community-crypto"]], "Description": [[15, "description"]], "Communication": [[15, "communication"]], "Scenario Guides": [[15, "scenario-guides"]], "Plugin Index": [[15, "plugin-index"]], "Modules": [[15, "modules"]], "Filter Plugins": [[15, "filter-plugins"]], "community.crypto.luks_device module \u2013 Manage encrypted (LUKS) devices": [[16, "community-crypto-luks-device-module-manage-encrypted-luks-devices"]], "community.crypto.openssh_cert module \u2013 Generate OpenSSH host or user certificates.": [[17, "community-crypto-openssh-cert-module-generate-openssh-host-or-user-certificates"]], "community.crypto.openssh_keypair module \u2013 Generate OpenSSH private and public keys": [[18, "community-crypto-openssh-keypair-module-generate-openssh-private-and-public-keys"]], "community.crypto.openssl_certificate_info": [[19, "community-crypto-openssl-certificate-info"]], "community.crypto.openssl_certificate": [[20, "community-crypto-openssl-certificate"]], "community.crypto.openssl_csr_info filter \u2013 Retrieve information from OpenSSL Certificate Signing Requests (CSR)": [[21, "community-crypto-openssl-csr-info-filter-retrieve-information-from-openssl-certificate-signing-requests-csr"]], "Input": [[21, "input"], [28, "input"], [32, "input"], [37, "input"], [38, "input"], [42, "input"]], "Keyword parameters": [[21, "keyword-parameters"], [28, "keyword-parameters"], [38, "keyword-parameters"], [42, "keyword-parameters"]], "Return Value": [[21, "return-value"], [28, "return-value"], [32, "return-value"], [37, "return-value"], [38, "return-value"], [42, "return-value"]], "community.crypto.openssl_csr_info module \u2013 Provide information of OpenSSL Certificate Signing Requests (CSR)": [[22, "community-crypto-openssl-csr-info-module-provide-information-of-openssl-certificate-signing-requests-csr"]], "community.crypto.openssl_csr module \u2013 Generate OpenSSL Certificate Signing Request (CSR)": [[23, "community-crypto-openssl-csr-module-generate-openssl-certificate-signing-request-csr"]], "community.crypto.openssl_csr_pipe module \u2013 Generate OpenSSL Certificate Signing Request (CSR)": [[24, "community-crypto-openssl-csr-pipe-module-generate-openssl-certificate-signing-request-csr"]], "community.crypto.openssl_dhparam module \u2013 Generate OpenSSL Diffie-Hellman Parameters": [[25, "community-crypto-openssl-dhparam-module-generate-openssl-diffie-hellman-parameters"]], "community.crypto.openssl_pkcs12 module \u2013 Generate OpenSSL PKCS#12 archive": [[26, "community-crypto-openssl-pkcs12-module-generate-openssl-pkcs-12-archive"]], "community.crypto.openssl_privatekey_convert module \u2013 Convert OpenSSL private keys": [[27, "community-crypto-openssl-privatekey-convert-module-convert-openssl-private-keys"]], "community.crypto.openssl_privatekey_info filter \u2013 Retrieve information from OpenSSL private keys": [[28, "community-crypto-openssl-privatekey-info-filter-retrieve-information-from-openssl-private-keys"]], "community.crypto.openssl_privatekey_info module \u2013 Provide information for OpenSSL private keys": [[29, "community-crypto-openssl-privatekey-info-module-provide-information-for-openssl-private-keys"]], "community.crypto.openssl_privatekey module \u2013 Generate OpenSSL private keys": [[30, "community-crypto-openssl-privatekey-module-generate-openssl-private-keys"]], "community.crypto.openssl_privatekey_pipe module \u2013 Generate OpenSSL private keys without disk access": [[31, "community-crypto-openssl-privatekey-pipe-module-generate-openssl-private-keys-without-disk-access"]], "community.crypto.openssl_publickey_info filter \u2013 Retrieve information from OpenSSL public keys in PEM format": [[32, "community-crypto-openssl-publickey-info-filter-retrieve-information-from-openssl-public-keys-in-pem-format"]], "community.crypto.openssl_publickey_info module \u2013 Provide information for OpenSSL public keys": [[33, "community-crypto-openssl-publickey-info-module-provide-information-for-openssl-public-keys"]], "community.crypto.openssl_publickey module \u2013 Generate an OpenSSL public key from its private key.": [[34, "community-crypto-openssl-publickey-module-generate-an-openssl-public-key-from-its-private-key"]], "community.crypto.openssl_signature_info module \u2013 Verify signatures with openssl": [[35, "community-crypto-openssl-signature-info-module-verify-signatures-with-openssl"]], "community.crypto.openssl_signature module \u2013 Sign data with openssl": [[36, "community-crypto-openssl-signature-module-sign-data-with-openssl"]], "community.crypto.split_pem filter \u2013 Split PEM file contents into multiple objects": [[37, "community-crypto-split-pem-filter-split-pem-file-contents-into-multiple-objects"]], "community.crypto.x509_certificate_info filter \u2013 Retrieve information from X.509 certificates in PEM format": [[38, "community-crypto-x509-certificate-info-filter-retrieve-information-from-x-509-certificates-in-pem-format"]], "community.crypto.x509_certificate_info module \u2013 Provide information of OpenSSL X.509 certificates": [[39, "community-crypto-x509-certificate-info-module-provide-information-of-openssl-x-509-certificates"]], "community.crypto.x509_certificate module \u2013 Generate and/or check OpenSSL certificates": [[40, "community-crypto-x509-certificate-module-generate-and-or-check-openssl-certificates"]], "community.crypto.x509_certificate_pipe module \u2013 Generate and/or check OpenSSL certificates": [[41, "community-crypto-x509-certificate-pipe-module-generate-and-or-check-openssl-certificates"]], "community.crypto.x509_crl_info filter \u2013 Retrieve information from X.509 CRLs in PEM format": [[42, "community-crypto-x509-crl-info-filter-retrieve-information-from-x-509-crls-in-pem-format"]], "community.crypto.x509_crl_info module \u2013 Retrieve information on Certificate Revocation Lists (CRLs)": [[43, "community-crypto-x509-crl-info-module-retrieve-information-on-certificate-revocation-lists-crls"]], "community.crypto.x509_crl module \u2013 Generate Certificate Revocation Lists (CRLs)": [[44, "community-crypto-x509-crl-module-generate-certificate-revocation-lists-crls"]]}, "indexentries": {}}) \ No newline at end of file +Search.setIndex({"docnames": ["acme_account_facts_module", "acme_account_info_module", "acme_account_module", "acme_certificate_module", "acme_certificate_revoke_module", "acme_challenge_cert_helper_module", "acme_inspect_module", "certificate_complete_chain_module", "crypto_info_module", "docsite/guide_ownca", "docsite/guide_selfsigned", "ecs_certificate_module", "ecs_domain_module", "environment_variables", "get_certificate_module", "index", "luks_device_module", "openssh_cert_module", "openssh_keypair_module", "openssl_certificate_info_module", "openssl_certificate_module", "openssl_csr_info_filter", "openssl_csr_info_module", "openssl_csr_module", "openssl_csr_pipe_module", "openssl_dhparam_module", "openssl_pkcs12_module", "openssl_privatekey_convert_module", "openssl_privatekey_info_filter", "openssl_privatekey_info_module", "openssl_privatekey_module", "openssl_privatekey_pipe_module", "openssl_publickey_info_filter", "openssl_publickey_info_module", "openssl_publickey_module", "openssl_signature_info_module", "openssl_signature_module", "split_pem_filter", "x509_certificate_info_filter", "x509_certificate_info_module", "x509_certificate_module", "x509_certificate_pipe_module", "x509_crl_info_filter", "x509_crl_info_module", "x509_crl_module"], "filenames": ["acme_account_facts_module.rst", "acme_account_info_module.rst", "acme_account_module.rst", "acme_certificate_module.rst", "acme_certificate_revoke_module.rst", "acme_challenge_cert_helper_module.rst", "acme_inspect_module.rst", "certificate_complete_chain_module.rst", "crypto_info_module.rst", "docsite/guide_ownca.rst", "docsite/guide_selfsigned.rst", "ecs_certificate_module.rst", "ecs_domain_module.rst", "environment_variables.rst", "get_certificate_module.rst", "index.rst", "luks_device_module.rst", "openssh_cert_module.rst", "openssh_keypair_module.rst", "openssl_certificate_info_module.rst", "openssl_certificate_module.rst", "openssl_csr_info_filter.rst", "openssl_csr_info_module.rst", "openssl_csr_module.rst", "openssl_csr_pipe_module.rst", "openssl_dhparam_module.rst", "openssl_pkcs12_module.rst", "openssl_privatekey_convert_module.rst", "openssl_privatekey_info_filter.rst", "openssl_privatekey_info_module.rst", "openssl_privatekey_module.rst", "openssl_privatekey_pipe_module.rst", "openssl_publickey_info_filter.rst", "openssl_publickey_info_module.rst", "openssl_publickey_module.rst", "openssl_signature_info_module.rst", "openssl_signature_module.rst", "split_pem_filter.rst", "x509_certificate_info_filter.rst", "x509_certificate_info_module.rst", "x509_certificate_module.rst", "x509_certificate_pipe_module.rst", "x509_crl_info_filter.rst", "x509_crl_info_module.rst", "x509_crl_module.rst"], "titles": ["community.crypto.acme_account_facts", "community.crypto.acme_account_info module \u2013 Retrieves information on ACME accounts", "community.crypto.acme_account module \u2013 Create, modify or delete ACME accounts", "community.crypto.acme_certificate module \u2013 Create SSL/TLS certificates with the ACME protocol", "community.crypto.acme_certificate_revoke module \u2013 Revoke certificates with the ACME protocol", "community.crypto.acme_challenge_cert_helper module \u2013 Prepare certificates required for ACME challenges such as tls-alpn-01", "community.crypto.acme_inspect module \u2013 Send direct requests to an ACME server", "community.crypto.certificate_complete_chain module \u2013 Complete certificate chain given a set of untrusted and root certificates", "community.crypto.crypto_info module \u2013 Retrieve cryptographic capabilities", "How to create a small CA", "How to create self-signed certificates", "community.crypto.ecs_certificate module \u2013 Request SSL/TLS certificates with the Entrust Certificate Services (ECS) API", "community.crypto.ecs_domain module \u2013 Request validation of a domain with the Entrust Certificate Services (ECS) API", "Index of all Collection Environment Variables", "community.crypto.get_certificate module \u2013 Get a certificate from a host:port", "Community.Crypto", "community.crypto.luks_device module \u2013 Manage encrypted (LUKS) devices", "community.crypto.openssh_cert module \u2013 Generate OpenSSH host or user certificates.", "community.crypto.openssh_keypair module \u2013 Generate OpenSSH private and public keys", "community.crypto.openssl_certificate_info", "community.crypto.openssl_certificate", "community.crypto.openssl_csr_info filter \u2013 Retrieve information from OpenSSL Certificate Signing Requests (CSR)", "community.crypto.openssl_csr_info module \u2013 Provide information of OpenSSL Certificate Signing Requests (CSR)", "community.crypto.openssl_csr module \u2013 Generate OpenSSL Certificate Signing Request (CSR)", "community.crypto.openssl_csr_pipe module \u2013 Generate OpenSSL Certificate Signing Request (CSR)", "community.crypto.openssl_dhparam module \u2013 Generate OpenSSL Diffie-Hellman Parameters", "community.crypto.openssl_pkcs12 module \u2013 Generate OpenSSL PKCS#12 archive", "community.crypto.openssl_privatekey_convert module \u2013 Convert OpenSSL private keys", "community.crypto.openssl_privatekey_info filter \u2013 Retrieve information from OpenSSL private keys", "community.crypto.openssl_privatekey_info module \u2013 Provide information for OpenSSL private keys", "community.crypto.openssl_privatekey module \u2013 Generate OpenSSL private keys", "community.crypto.openssl_privatekey_pipe module \u2013 Generate OpenSSL private keys without disk access", "community.crypto.openssl_publickey_info filter \u2013 Retrieve information from OpenSSL public keys in PEM format", "community.crypto.openssl_publickey_info module \u2013 Provide information for OpenSSL public keys", "community.crypto.openssl_publickey module \u2013 Generate an OpenSSL public key from its private key.", "community.crypto.openssl_signature_info module \u2013 Verify signatures with openssl", "community.crypto.openssl_signature module \u2013 Sign data with openssl", "community.crypto.split_pem filter \u2013 Split PEM file contents into multiple objects", "community.crypto.x509_certificate_info filter \u2013 Retrieve information from X.509 certificates in PEM format", "community.crypto.x509_certificate_info module \u2013 Provide information of OpenSSL X.509 certificates", "community.crypto.x509_certificate module \u2013 Generate and/or check OpenSSL certificates", "community.crypto.x509_certificate_pipe module \u2013 Generate and/or check OpenSSL certificates", "community.crypto.x509_crl_info filter \u2013 Retrieve information from X.509 CRLs in PEM format", "community.crypto.x509_crl_info module \u2013 Retrieve information on Certificate Revocation Lists (CRLs)", "community.crypto.x509_crl module \u2013 Generate Certificate Revocation Lists (CRLs)"], "terms": {"thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "plugin": [0, 13, 19, 20, 21, 22, 28, 29, 31, 32, 33, 37, 38, 39, 42, 43], "wa": [0, 1, 3, 4, 6, 9, 11, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 29, 30, 31, 34, 35, 38, 39, 40, 42, 43, 44], "part": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "collect": [0, 9, 10, 15, 19, 20], "version": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "2": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "14": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "1": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "modul": [0, 9, 10, 19, 20, 21, 28, 32, 38, 42], "ha": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 42, 43, 44], "been": [0, 1, 2, 3, 4, 6, 11, 13, 14, 16, 17, 19, 20, 23, 24, 29, 34, 41, 44], "remov": [0, 1, 2, 3, 4, 6, 16, 19, 20, 26, 34, 40, 44], "0": [0, 1, 2, 3, 4, 5, 6, 8, 11, 12, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "The": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "renam": [0, 19, 20, 39, 40, 44], "acme_account_info": [0, 2, 15], "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "To": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "instal": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "us": [1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "ansibl": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "galaxi": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "you": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "need": [1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "further": [1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "abl": [1, 2, 3, 4, 5, 6, 7, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "detail": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "playbook": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "specifi": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "allow": [1, 2, 3, 4, 6, 11, 12, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "ca": [1, 2, 3, 4, 6, 7, 11, 15, 17, 21, 22, 23, 24, 26, 37, 38, 39, 40, 41, 42, 43, 44], "support": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "protocol": [1, 2, 5, 6, 14, 15, 18, 40], "let": [1, 2, 3, 4, 6, 40], "": [1, 2, 3, 4, 5, 6, 9, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 41, 42, 43, 44], "encrypt": [1, 2, 3, 4, 6, 14, 15, 18, 26, 27, 30, 31, 40], "onli": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "work": [1, 2, 3, 4, 6, 16, 17, 18, 23, 25, 26, 27, 30, 31, 34, 40], "v2": [1, 2, 3, 4, 6, 34], "below": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "ar": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "host": [1, 2, 3, 4, 5, 6, 7, 11, 12, 15, 16, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "execut": [1, 2, 3, 4, 5, 6, 7, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "either": [1, 2, 3, 4, 6, 11, 12, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 33, 34, 35, 36, 39, 40, 41, 43, 44], "openssl": [1, 2, 3, 4, 6, 7, 8, 14, 15, 38], "cryptographi": [1, 2, 3, 4, 5, 6, 7, 8, 11, 14, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44], "5": [1, 2, 3, 4, 6, 7, 8, 12, 16, 21, 22, 30, 31, 35, 36, 38, 39, 40, 41], "ipaddress": [1, 2, 3, 4, 6], "comment": [1, 2, 3, 4, 5, 6, 7, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "account_key_cont": [1, 2, 3, 4, 6], "string": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "content": [1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 14, 15, 16, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "rsa": [1, 2, 3, 4, 6, 8, 10, 17, 18, 21, 22, 28, 29, 30, 31, 32, 33, 35, 36, 38, 39], "ellipt": [1, 2, 3, 4, 6, 8, 18, 21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "curv": [1, 2, 3, 4, 6, 8, 18, 21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "kei": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 21, 22, 23, 24, 25, 26, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "mutual": [1, 2, 3, 4, 5, 6, 16, 23, 24, 26, 40, 41, 44], "exclus": [1, 2, 3, 4, 5, 6, 16, 23, 24, 26, 40, 41, 44], "account_key_src": [1, 2, 3, 4, 5, 6, 8], "warn": [1, 2, 3, 4, 6, 28, 29, 39, 40], "written": [1, 2, 3, 4, 6, 17, 18, 23, 25, 26, 27, 30, 31, 34, 40, 44], "temporari": [1, 2, 3, 4, 6], "file": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "which": [1, 2, 3, 4, 6, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "delet": [1, 3, 4, 6, 15], "when": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "complet": [1, 2, 3, 4, 6, 8, 15, 16, 31], "sinc": [1, 2, 3, 4, 6, 9, 16, 23, 24, 26, 29], "an": [1, 2, 3, 4, 5, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 38, 39, 40, 41, 42, 43, 44], "import": [1, 2, 3, 4, 6, 8, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40, 44], "privat": [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 15, 17, 21, 22, 23, 24, 25, 26, 32, 33, 35, 36, 38, 39, 40, 41, 42, 43, 44], "can": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 42, 43, 44], "chang": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "revok": [1, 2, 3, 6, 11, 15, 42, 43, 44], "your": [1, 2, 3, 4, 6, 9, 11, 12, 23, 24, 25, 30, 40, 41], "certif": [1, 2, 6, 15, 25, 26, 28, 30, 31, 34, 35, 36, 37, 42], "without": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 33, 34, 35, 36, 39, 40, 41, 43, 44], "know": [1, 2, 3, 4, 6, 23, 24], "might": [1, 2, 3, 4, 6, 14, 27, 30, 31, 34, 44], "accept": [1, 2, 3, 4, 6, 11, 23, 24], "In": [1, 2, 3, 4, 6, 9, 11, 18, 21, 22, 26, 29, 30, 41], "case": [1, 2, 3, 4, 6, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 25, 26, 27, 29, 30, 31, 34, 38, 39, 40, 44], "It": [1, 2, 3, 4, 6, 7, 11, 18, 22, 27, 29, 30, 33, 39, 40, 41, 44], "still": [1, 2, 3, 4, 6, 11, 17, 22, 29, 39, 40], "happen": [1, 2, 3, 4, 6], "disk": [1, 2, 3, 4, 6, 7, 10, 15, 23, 24, 27, 29, 30, 34, 40, 41], "process": [1, 2, 3, 4, 6, 12, 16, 44], "move": [1, 2, 3, 4, 6, 11, 39, 40, 41], "its": [1, 2, 3, 4, 6, 7, 9, 11, 12, 15, 16, 17, 18, 23, 24, 25, 26, 27, 30, 31, 33, 40, 41], "argument": [1, 2, 3, 4, 6, 25], "node": [1, 2, 3, 4, 6, 21, 28, 38, 42], "where": [1, 2, 3, 4, 6, 9, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 33, 34, 39, 40, 41, 43, 44], "account_key_passphras": [1, 2, 3, 4, 6], "ad": [1, 2, 3, 4, 5, 6, 7, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 34, 39, 40, 41, 42, 43, 44], "6": [1, 2, 3, 4, 5, 6, 8, 11, 14, 16, 18, 21, 22, 23, 24, 30, 31, 35, 36, 38, 39, 40, 41], "phassphras": [1, 2, 3, 4, 5, 6], "decod": [1, 2, 3, 4, 5, 6, 21, 22, 28, 38, 39, 42, 43, 44], "backend": [1, 2, 3, 4, 6, 14, 18, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "alias": [1, 2, 3, 4, 6, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40, 41, 44], "account_kei": [1, 2, 3, 4, 6], "path": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "contain": [1, 2, 3, 4, 5, 6, 7, 12, 14, 16, 17, 18, 23, 24, 25, 26, 27, 30, 31, 34, 40, 44], "creat": [1, 4, 5, 6, 11, 15, 16, 17, 18, 23, 24, 25, 26, 27, 30, 33, 34, 40, 41, 43, 44], "openssl_privatekei": [1, 2, 3, 6, 9, 10, 11, 15, 23, 24, 25, 26, 27, 29, 31, 33, 34, 36, 40, 41], "openssl_privatekey_pip": [1, 2, 3, 6, 15, 23, 24, 27, 29, 30, 34, 40, 41], "If": [1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "requisit": [1, 2, 3, 6], "avail": [1, 2, 3, 4, 6, 8, 10, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 44], "directli": [1, 2, 3, 6, 10, 39, 40], "command": [1, 2, 3, 6, 16, 17], "line": [1, 2, 3, 6, 16], "tool": [1, 2, 3, 4, 6, 23, 24], "genrsa": [1, 2, 3, 6], "ecparam": [1, 2, 3, 4, 6], "genkei": [1, 2, 3, 4, 6], "ani": [1, 2, 3, 4, 6, 9, 10, 11, 17, 18, 23, 24, 25, 26, 27, 30, 31, 34, 40, 41], "other": [1, 2, 3, 4, 6, 11, 17, 18, 23, 24, 25, 26, 27, 30, 31, 34, 38, 39, 40, 43, 44], "pem": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 15, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "format": [1, 2, 3, 4, 5, 6, 7, 11, 14, 15, 16, 17, 18, 21, 22, 26, 27, 28, 29, 30, 31, 34, 39, 40, 41, 43, 44], "well": [1, 2, 3, 4, 6, 12, 26, 27, 30, 31, 34, 40], "account_uri": [1, 2, 3, 4, 6], "assum": [1, 2, 3, 4, 6, 7, 9, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "uri": [1, 2, 3, 4, 6, 21, 22, 23, 24, 28, 38, 39, 42, 43, 44], "given": [1, 2, 3, 4, 5, 6, 15, 16, 23, 24, 35], "doe": [1, 2, 3, 4, 5, 6, 7, 8, 11, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "match": [1, 2, 3, 4, 6, 7, 12, 17, 18, 23, 24, 25, 30, 31, 40, 44], "exist": [1, 2, 3, 4, 5, 6, 9, 11, 16, 17, 18, 23, 24, 25, 26, 27, 30, 31, 34, 40, 41, 44], "fail": [1, 2, 3, 4, 6, 11, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 42, 43, 44], "acme_directori": [1, 2, 3, 4, 6, 40], "directori": [1, 2, 3, 4, 6, 7, 40], "entri": [1, 2, 3, 4, 5, 6, 12, 21, 22, 28, 32, 37, 38, 39, 40, 42, 44], "point": [1, 2, 3, 4, 6, 7, 11, 17, 21, 22, 23, 24, 28, 29, 32, 33, 38, 39, 40, 41, 42, 43, 44], "url": [1, 2, 3, 4, 6], "access": [1, 2, 3, 4, 6, 12, 15, 23, 24, 27, 29, 30, 34, 40, 41, 44], "server": [1, 2, 3, 4, 9, 11, 12, 14, 15, 17, 23, 24, 40, 41], "api": [1, 2, 3, 4, 6, 15, 40, 41], "For": [1, 2, 3, 4, 6, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42], "safeti": [1, 2, 3, 4, 6], "reason": [1, 2, 3, 4, 6, 23, 24, 40, 41, 42, 43, 44], "default": [1, 2, 3, 4, 6, 7, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "set": [1, 2, 3, 4, 5, 6, 11, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "stage": [1, 2, 3, 4, 6, 40], "v1": [1, 2, 3, 4, 6], "technic": [1, 2, 3, 4, 6, 11], "correct": [1, 2, 3, 4, 6, 7, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "untrust": [1, 2, 3, 4, 6, 15], "all": [1, 2, 3, 4, 6, 7, 8, 9, 11, 14, 17, 18, 21, 22, 26, 28, 29, 30, 31, 37, 38, 39, 40, 41, 42, 43, 44], "endpoint": [1, 2, 3, 4, 6], "found": [1, 2, 3, 4, 6, 8, 12], "here": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "http": [1, 2, 3, 4, 5, 6, 11, 12, 14, 17, 23, 24, 30, 40, 41], "letsencrypt": [1, 2, 3, 4, 6, 40], "org": [1, 2, 3, 4, 6, 11, 23, 24, 40, 42, 43, 44], "doc": [1, 2, 3, 4, 6, 9, 10, 30, 40], "environ": [1, 2, 3, 4, 5, 6, 40], "buypass": [1, 2, 3, 4, 6, 40], "com": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 17, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 38, 39, 40, 41, 42, 43, 44], "t": [1, 2, 3, 4, 6, 9, 17, 18, 22, 23, 25, 26, 27, 29, 30, 33, 34, 39, 40, 44], "63d4ai": [1, 2, 3, 4, 6], "go": [1, 2, 3, 4, 6], "ssl": [1, 2, 4, 5, 6, 7, 12, 14, 15, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 39, 40, 41, 43, 44], "product": [1, 2, 3, 4, 6, 11, 31], "v02": [1, 2, 3, 4, 6, 40], "zerossl": [1, 2, 3, 4, 6], "dv90": [1, 2, 3, 4, 6], "sectigo": [1, 2, 3, 4, 6], "qa": [1, 2, 3, 4, 6], "secur": [1, 2, 3, 4, 6, 11, 14, 26, 40, 41], "trust": [1, 2, 3, 4, 6, 42, 43, 44], "provid": [1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 14, 15, 16, 18, 21, 23, 24, 28, 30, 31, 32, 34, 38, 40, 41, 42, 43], "dv": [1, 2, 3, 4, 6], "list": [1, 2, 3, 4, 6, 7, 8, 11, 12, 14, 15, 17, 21, 22, 23, 24, 26, 28, 32, 37, 38, 39, 42], "servic": [1, 2, 3, 4, 6, 15, 40, 41], "test": [1, 2, 3, 4, 6, 11, 12, 18, 21, 22, 38, 39], "against": [1, 2, 3, 4, 6, 11, 14, 17], "acme_vers": [1, 2, 3, 4, 6], "integ": [1, 2, 3, 4, 6, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 38, 39, 40, 41, 42, 43, 44], "must": [1, 2, 3, 4, 5, 6, 9, 11, 12, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44], "classic": [1, 2, 3, 4, 6], "standard": [1, 2, 3, 4, 6, 11], "deprec": [1, 2, 3, 4, 6, 14, 18, 39, 40, 44], "from": [1, 2, 3, 4, 6, 7, 9, 10, 11, 12, 15, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 39, 40, 41, 43, 44], "3": [1, 2, 3, 4, 5, 6, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 26, 27, 29, 30, 31, 33, 34, 38, 39, 40, 41, 44], "choic": [1, 2, 3, 4, 5, 6, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "request_timeout": [1, 2, 3, 4, 6], "time": [1, 2, 3, 4, 6, 11, 12, 14, 16, 17, 21, 22, 26, 28, 29, 32, 33, 38, 39, 40, 41, 42, 43, 44], "should": [1, 2, 3, 4, 5, 6, 8, 11, 12, 14, 17, 18, 21, 22, 23, 24, 25, 26, 27, 30, 31, 34, 38, 39, 40, 41, 43, 44], "wait": [1, 2, 3, 4, 6], "respons": [1, 2, 3, 4, 6, 11], "timeout": [1, 2, 3, 4, 6, 14], "appli": [1, 2, 3, 4, 6, 11, 14, 17, 18], "request": [1, 2, 3, 4, 5, 7, 8, 9, 10, 14, 15, 16, 17, 18, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "head": [1, 2, 3, 4, 6], "get": [1, 2, 3, 4, 6, 11, 15, 17, 18, 22, 23, 25, 26, 27, 29, 30, 33, 34, 39, 40, 43, 44], "post": [1, 2, 3, 4, 6, 11], "10": [1, 2, 3, 4, 6, 10, 14, 15, 16, 17, 18, 21, 28, 30, 31, 32, 34, 37, 38, 39, 40, 41, 42], "retrieve_ord": 1, "whether": [1, 2, 3, 4, 6, 8, 9, 11, 12, 14, 17, 18, 21, 22, 23, 24, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 43, 44], "order": [1, 3, 6, 11, 14, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 37, 38, 39, 40, 42, 43, 44], "object": [1, 3, 6, 15, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "A": [1, 2, 5, 7, 8, 11, 14, 22, 23, 24, 29, 33, 35, 37, 39, 40, 41, 43, 44], "ignor": [1, 2, 3, 7, 11, 17, 18, 21, 22, 23, 24, 26, 28, 31, 37, 38, 39, 40, 41, 42, 43, 44], "fetch": 1, "order_uri": [1, 3, 6], "alwai": [1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 14, 17, 18, 26, 29, 30, 31, 39, 40, 41, 44], "popul": 1, "option": [1, 2, 3, 4, 6, 11, 14, 16, 17, 18, 23, 24, 25, 26, 27, 30, 31, 34, 39, 40, 41, 44], "object_list": 1, "current": [1, 3, 8, 11, 12, 14, 17, 18, 23, 24, 25, 26, 27, 30, 31, 34, 40, 41, 44], "so": [1, 2, 3, 4, 6, 11, 12, 16, 17, 18, 21, 23, 25, 26, 27, 28, 29, 30, 31, 34, 38, 40, 42, 44], "result": [1, 4, 5, 9, 10, 11, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 38, 39, 40, 41, 42, 43, 44], "empti": [1, 3, 8], "url_list": 1, "select_crypto_backend": [1, 2, 3, 4, 6, 14, 22, 23, 24, 25, 26, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41], "determin": [1, 2, 3, 4, 6, 14, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41], "auto": [1, 2, 3, 4, 6, 14, 18, 22, 23, 24, 25, 26, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41], "tri": [1, 2, 3, 4, 6, 7, 14, 22, 23, 24, 25, 26, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41], "fall": [1, 2, 3, 4, 6, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "back": [1, 2, 3, 4, 6, 9, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "try": [1, 2, 3, 4, 6, 7, 8, 14, 16, 22, 23, 24, 25, 26, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41], "binari": [1, 2, 3, 4, 6, 8, 14, 18, 25], "librari": [1, 2, 3, 4, 6, 8, 14, 17, 18, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "validate_cert": [1, 2, 3, 4, 6], "boolean": [1, 2, 3, 4, 6, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 38, 39, 40, 41, 42, 43, 44], "call": [1, 2, 3, 4, 6, 11, 26, 39, 40, 44], "valid": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 15, 17, 21, 22, 23, 24, 35, 36, 39, 40, 41, 44], "tl": [1, 2, 4, 6, 14, 15, 23, 24, 26, 27, 30, 31, 34, 40, 41], "ever": [1, 2, 3, 4, 6], "fals": [1, 2, 3, 4, 6, 8, 9, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 38, 39, 40, 41, 42, 43, 44], "purpos": [1, 2, 3, 4, 6, 11, 23, 24, 40, 41], "local": [1, 2, 3, 4, 6, 11, 12, 21, 28, 38, 40, 41, 42], "pebbl": [1, 2, 3, 4, 6], "true": [1, 2, 3, 4, 6, 8, 9, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 38, 39, 40, 41, 42, 43, 44], "descript": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "action_group": [1, 2, 3, 4, 6], "action": [1, 2, 3, 4, 5, 6, 7, 8, 11, 14, 17, 18, 22, 23, 25, 26, 29, 30, 31, 33, 34, 35, 36, 39, 40, 43, 44], "group": [1, 2, 3, 4, 6, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 32, 33, 34, 38, 39, 40, 44], "module_default": [1, 2, 3, 4, 6], "check_mod": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "full": [1, 2, 3, 7, 8, 11, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "modifi": [1, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "state": [1, 2, 3, 5, 7, 8, 14, 16, 17, 18, 22, 23, 25, 26, 29, 30, 33, 34, 35, 36, 39, 40, 43, 44], "run": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "statu": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "predict": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "target": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "diff_mod": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "n": [1, 5, 6, 7, 8, 14, 22, 29, 33, 35, 39, 43], "Will": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44], "what": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "possibli": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "diff": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "mode": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "acme_account": [1, 3, 15], "acme_account_fact": 1, "befor": [1, 3, 12, 21, 28, 32, 37, 38, 40, 41, 42, 44], "8": [1, 3, 4, 16, 17, 18, 23, 25, 26, 27, 30, 34, 40], "usag": [1, 3, 7, 10, 11, 15, 16, 23, 40, 41, 44], "did": [1, 3, 31], "new": [1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 16, 17, 18, 21, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "enough": [1, 2, 3, 4, 6, 17, 18, 23, 25, 26, 27, 30, 34, 40], "instead": [1, 2, 3, 4, 6, 10, 16, 17, 23, 24, 30, 31, 44], "explicitli": [1, 2, 3, 4, 6, 27, 29, 30], "disabl": [1, 2, 3, 4, 6, 11, 16, 17, 29], "enabl": [1, 2, 3, 4, 6, 11, 17, 23, 24], "slower": [1, 2, 3, 4, 6], "less": [1, 2, 3, 4, 6, 12, 17], "have": [1, 2, 3, 4, 6, 10, 11, 12, 13, 17, 18, 21, 23, 25, 26, 27, 28, 29, 30, 31, 32, 34, 37, 38, 40, 41, 42, 44], "store": [1, 2, 3, 4, 6, 10, 11, 12, 16, 24, 26, 27, 40, 41], "although": [1, 2, 3, 4, 6], "chosen": [1, 2, 3, 4, 6, 26], "principl": [1, 2, 3, 4, 6], "far": [1, 2, 3, 4, 6], "develop": [1, 2, 3, 4, 6, 40], "we": [1, 2, 3, 4, 5, 6, 9, 26, 30, 31], "got": [1, 2, 3, 4, 6], "feedback": [1, 2, 3, 4, 6], "thei": [1, 2, 3, 4, 6, 12, 14, 16, 18, 25, 30, 31, 39, 43], "incommon": [1, 2, 3, 4, 6], "experi": [1, 2, 3, 4, 6], "problem": [1, 2, 3, 4, 6], "anoth": [1, 2, 3, 4, 6, 7, 9, 10, 11, 16, 21, 22, 28, 30, 38, 39, 41, 42, 43, 44], "pleas": [1, 2, 3, 4, 6, 7, 9, 14, 18, 23, 24, 25, 27, 30, 31, 40, 41], "issu": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "help": [1, 2, 3, 4, 6, 11], "u": [1, 2, 3, 4, 6, 17, 18, 23, 25, 26, 27, 30, 34, 40, 41], "mention": [1, 2, 3, 4, 6, 26], "appreci": [1, 2, 3, 4, 6], "name": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "check": [1, 3, 7, 9, 11, 15, 17, 21, 22, 23, 24, 25, 26, 29, 30, 31, 34, 35, 39, 42, 43, 44], "etc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 22, 23, 24, 25, 26, 27, 29, 30, 33, 34, 39, 40, 41, 43, 44], "pki": [1, 2, 3, 4, 5, 6, 8, 12], "cert": [1, 2, 3, 4, 5, 6, 8, 11, 14, 17, 21, 22, 23, 24, 26, 28, 35, 36, 38, 39, 42, 44], "regist": [1, 3, 5, 6, 7, 8, 9, 10, 14, 22, 24, 29, 31, 33, 35, 36, 39, 40, 41, 43], "account_data": 1, "verifi": [1, 7, 12, 15, 36, 40], "builtin": [1, 3, 7, 8, 14, 21, 22, 24, 28, 29, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43], "assert": [1, 35, 36, 39, 40], "print": [1, 24, 37, 41, 43], "debug": [1, 2, 3, 4, 6, 8, 11, 14, 21, 22, 24, 28, 29, 31, 32, 33, 37, 38, 39, 41, 42, 43], "var": [1, 3, 6, 8, 14, 22, 24, 29, 33, 39, 41], "contact": [1, 2, 3, 6], "acme_account_kei": 1, "acme_account_uri": 1, "common": [1, 2, 3, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "document": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "follow": [1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "field": [1, 2, 3, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44], "uniqu": [1, 2, 3, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "dictionari": [1, 2, 3, 5, 6, 8, 11, 14, 16, 21, 22, 23, 24, 28, 29, 30, 31, 32, 33, 34, 38, 39, 42, 43, 44], "element": [1, 2, 3, 7, 8, 11, 12, 14, 17, 21, 22, 23, 24, 26, 28, 29, 32, 33, 37, 38, 39, 42, 43, 44], "challeng": [1, 3, 6, 15, 40], "resourc": [1, 3, 5, 12], "sampl": [1, 3, 4, 5, 6, 8, 11, 12, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 42, 43, 44], "mailto": [1, 2, 6], "me": [1, 2, 6], "tel": 1, "00123456789": 1, "queri": [1, 3, 22, 29, 33, 39], "public_account_kei": 1, "public": [1, 3, 11, 15, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38, 39, 40, 41], "json": [1, 6, 11, 14, 42, 43], "web": [1, 12], "kty": [1, 6], "ec": [1, 3, 15, 40, 41], "crv": 1, "p": [1, 21, 22, 28, 29, 32, 33, 38, 39], "256": [1, 17, 18], "x": [1, 6, 14, 15, 21, 22, 28, 29, 32, 33, 43], "mkbctnickusdii11yss3526idz8aito7tu6kpaqv7d4": 1, "y": [1, 14, 21, 22, 28, 29, 32, 33, 38, 39], "4etl6srw2yilurn5vfvvhuhp7x8pxltmwwlbbm4ifym": 1, "deactiv": [1, 2, 3, 11], "none": [1, 2, 3, 4, 5, 6, 11, 12, 14, 16, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 34, 36, 38, 39], "success": [1, 3, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "error": [1, 3, 4, 6, 8, 11, 16, 40], "occur": [1, 44], "dure": [1, 2, 3, 11, 17, 26], "about": [1, 2, 11, 12, 14, 17, 23, 24, 28, 29], "structur": 1, "rfc7807": 1, "expir": [1, 3, 6, 10, 11, 12, 14, 38, 39, 40, 41, 44], "timestamp": [1, 17, 23, 25, 26, 27, 30, 34, 39, 40, 41, 43, 44], "describ": [1, 21, 23, 24, 28, 32, 37, 38, 42], "rfc3339": [1, 11], "includ": [1, 3, 7, 9, 11, 12, 17, 18, 23, 25, 26, 27, 30, 34, 38, 39, 40, 42, 43, 44], "pend": [1, 11], "give": [1, 17, 18, 23, 25, 26, 27, 30, 34, 40], "expiri": [1, 11, 40, 41], "date": [1, 6, 7, 11, 14, 38, 39, 40, 41, 42, 43, 44], "final": [1, 3], "identifi": [1, 2, 3, 5, 11, 16, 17, 21, 22, 23, 24, 38, 39, 40, 41], "type": [1, 3, 5, 6, 10, 11, 12, 16, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44], "dn": [1, 3, 5, 9, 10, 12, 21, 22, 23, 24, 28, 38, 39, 40, 42, 43, 44], "ip": [1, 3, 5, 14, 21, 22, 23, 24, 38, 39], "hostnam": [1, 14], "address": [1, 2, 3, 5, 11, 12, 17, 21, 22, 28, 38, 39, 42, 43, 44], "wildcard": [1, 3], "actual": [1, 5, 17, 18, 23, 25, 26, 27, 30, 34, 40], "prefix": [1, 2, 23, 24], "notaft": [1, 38, 39], "notbefor": [1, 38, 39], "readi": [1, 11], "invalid": [1, 11, 37, 42, 43, 44], "felix": [1, 2, 4, 5, 6, 7, 8, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 41, 42, 43, 44], "fontein": [1, 2, 4, 5, 6, 7, 8, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 41, 42, 43, 44], "felixfontein": [1, 2, 4, 5, 6, 7, 8, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 41, 42, 43, 44], "tracker": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "repositori": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "sourc": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "submit": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "bug": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "report": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "featur": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "allow_cr": 2, "creation": [2, 3, 6, 16], "present": [2, 3, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 30, 34, 38, 39, 40, 44], "email": [2, 3, 11, 12, 21, 22, 23, 24, 28, 38, 39, 40, 41, 42, 43, 44], "ietf": [2, 3, 6, 23, 24], "html": [2, 3, 6, 23, 24, 30], "rfc8555": [2, 3, 6], "section": [2, 3, 4, 6, 23, 24], "7": [2, 3, 6, 14, 17, 18, 21, 22, 26, 33, 38, 39, 42, 43], "absent": [2, 16, 17, 18, 23, 25, 26, 30, 34, 40, 44], "changed_kei": 2, "external_account_bind": 2, "extern": [2, 3], "bind": [2, 3], "data": [2, 3, 5, 11, 12, 15, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 38, 39, 40, 41, 44], "like": [2, 3, 10, 40, 41], "specif": [2, 3, 4, 5, 6, 10, 11, 12, 16, 23, 24, 26, 39, 40, 41], "properli": [2, 6], "custom": [2, 11, 18], "alg": 2, "mac": [2, 26], "algorithm": [2, 14, 16, 17, 18, 21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 41, 42, 43, 44], "probabl": 2, "hs256": 2, "hs384": 2, "hs512": 2, "base64": [2, 3, 14, 21, 22, 26, 30, 31, 35, 36, 38, 39, 43, 44], "encod": [2, 3, 6, 11, 14, 21, 22, 26, 28, 30, 31, 35, 36, 38, 39, 42, 43, 44], "pad": 2, "symbol": [2, 7, 17, 18, 23, 25, 26, 27, 30, 34, 40], "end": [2, 3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40], "omit": [2, 9, 16, 17, 18], "kid": 2, "new_account_key_cont": 2, "same": [2, 3, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 44], "restrict": [2, 3, 17, 23, 24], "new_account_key_src": 2, "new_account_key_passphras": 2, "inform": [2, 3, 4, 5, 6, 8, 10, 11, 12, 14, 15, 17, 18, 23, 24, 25, 26, 27, 30, 31, 34, 40, 41], "touch": 2, "terms_agre": [2, 3], "indic": [2, 3, 11, 14, 23, 24, 29, 31], "agre": [2, 3], "term": [2, 3, 6], "acme_certif": [2, 5, 6, 7, 15], "do": [2, 3, 6, 9, 10, 11, 12, 16, 17, 18, 23, 25, 26, 27, 29, 30, 31, 34, 40], "basic": [2, 3, 21, 22, 23, 24, 28, 29, 32, 33, 38, 39], "manag": [2, 3, 4, 5, 6, 11, 15, 34], "both": [2, 3, 11, 18, 22, 23, 24, 29, 33, 34, 35, 36, 39, 41, 43, 44], "recommend": [2, 11, 12, 40, 41], "modify_account": [2, 3], "automat": [2, 3, 4, 5, 6, 16, 30, 31, 40], "rfc": [2, 3, 4, 5, 6, 23, 24], "8555": [2, 3, 4, 5, 6], "retriev": [2, 3, 6, 14, 15, 23, 24, 40, 41], "fact": 2, "write": [2, 3, 6, 7, 9, 16, 17, 18, 23, 25, 26, 27, 30, 31, 34, 40, 41, 44], "acme_inspect": [2, 3, 4, 15], "make": [2, 3, 6, 11, 14, 16, 18, 28, 29, 30, 31, 35, 36, 39, 44], "sure": [2, 3, 16, 18, 28, 29, 30, 31, 35, 36, 44], "TOS": 2, "myself": [2, 3], "one": [2, 3, 4, 7, 9, 11, 12, 14, 17, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "variabl": [2, 3, 9, 21, 22, 28, 29, 32, 37, 38, 42], "new_account_kei": 2, "renew": [3, 11], "implement": [3, 31, 40, 41], "01": [3, 6, 11, 15, 17, 30, 31, 34], "alpn": [3, 6, 15], "twice": 3, "two": [3, 23, 24], "differ": [3, 4, 10, 12, 14, 17, 18, 23, 25, 30, 34, 40, 44], "task": [3, 11, 17, 18, 30, 31, 39], "output": [3, 6, 8, 11, 17, 26, 30, 31], "first": [3, 5, 6, 10, 11, 12, 16, 26, 39], "record": [3, 11, 12], "pass": [3, 9, 11], "second": [3, 12, 14, 16, 39, 40, 41, 44], "between": [3, 16, 18], "fulfil": 3, "step": [3, 11, 26], "whatev": 3, "mean": [3, 11, 35], "necessari": [3, 17], "destin": [3, 11, 17, 18, 23, 25, 26, 27, 30, 31, 34, 40], "webserv": 3, "serv": [3, 40], "perform": [3, 11, 12, 16, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40, 44], "how": [3, 5, 12, 14, 15, 21, 22, 23, 24, 28, 30, 38, 39, 40, 42, 43, 44], "read": [3, 9, 16, 17, 18, 23, 25, 26, 27, 30, 31, 34, 35, 36, 40, 41, 44], "through": 3, "main": 3, "consid": [3, 17, 18, 23, 24, 25, 26, 30, 40], "experiment": 3, "accord": [3, 23, 24], "8738": 3, "account_email": 3, "associ": [3, 7, 11, 12], "account": [3, 4, 5, 6, 8, 11, 15], "more": [3, 7, 11, 14, 17, 23, 24, 26, 40, 41, 44], "than": [3, 4, 11, 12, 17, 18, 21, 22, 23, 24, 26, 28, 38, 39, 40, 41, 42, 43, 44], "updat": [3, 6, 12, 17, 18, 23, 25, 26, 27, 30, 31, 34, 40, 44], "most": [3, 16], "agreement": [3, 11, 21, 22, 38, 39], "latest": [3, 30, 44], "gather": 3, "chain_dest": 3, "chain": [3, 11, 14, 15, 40], "intermedi": [3, 7, 11, 26, 31, 40], "some": [3, 4, 14, 16, 17, 18, 23, 25, 26, 27, 30, 31, 34, 35, 36, 40, 42, 43], "assur": 3, "could": [3, 11, 23, 25, 29, 30, 40, 41], "foo": [3, 16, 17], "certain": [3, 17, 39], "period": [3, 40, 41], "csr": [3, 5, 6, 7, 9, 10, 11, 15, 25, 26, 28, 30, 31, 34, 39, 40, 41], "src": [3, 9, 26, 41], "openssl_csr": [3, 10, 11, 15, 22, 24, 25, 26, 30, 31, 34, 40, 41], "req": 3, "mai": [3, 11, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40, 41], "multipl": [3, 9, 10, 11, 15, 21, 22, 23, 24, 26, 28, 29, 32, 33, 38, 39], "subject": [3, 7, 10, 11, 14, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 30, 34, 38, 39, 40, 41, 42, 44], "altern": [3, 10, 11, 23, 24, 40, 41], "each": [3, 9, 11, 21, 28, 30, 31, 32, 34, 37, 38, 42], "lead": [3, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "individu": [3, 17], "sign": [3, 5, 8, 11, 14, 15, 17, 25, 26, 30, 31, 34, 35, 38, 39, 40, 41, 42, 43, 44], "bad": 3, "idea": 3, "view": 3, "precis": 3, "csr_content": [3, 9, 10, 40, 41], "openssl_csr_pip": [3, 9, 10, 15, 22, 23, 30, 31, 34, 40, 41], "ongo": 3, "previou": [3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "non": [3, 8, 11, 17], "activ": [3, 6, 11, 12], "taken": 3, "mark": [3, 23, 24], "no_log": [3, 30, 31], "up": [3, 5, 11, 16, 17, 18, 21, 23, 25, 26, 27, 28, 30, 32, 34, 37, 38, 39, 40, 42], "longer": [3, 16, 23, 24], "wai": [3, 5, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "caus": [3, 14, 17, 18], "messag": 3, "come": 3, "unus": 3, "anywai": 3, "deactivate_authz": 3, "authent": [3, 6, 11, 12, 17, 23, 24, 40, 41], "authz": [3, 6], "after": [3, 16, 40, 41], "bound": 3, "remain": [3, 11, 12, 16, 17], "amount": 3, "re": [3, 12, 14, 18, 21, 22, 23, 24, 25, 26, 30, 31, 34, 38, 39, 40, 41, 44], "domain": [3, 5, 11, 15, 21, 22, 28, 38, 39, 42, 43, 44], "concern": [3, 23, 25, 30, 40], "dest": [3, 5, 7, 9, 24, 41], "fullchain_dest": [3, 6], "forc": [3, 11, 17, 18, 23, 25, 26, 27, 30, 31, 34, 40, 41, 44], "enforc": 3, "even": [3, 4, 11, 16, 17, 18, 25, 26, 30, 34, 40, 41], "remaining_dai": [3, 11], "especi": [3, 30], "addit": [3, 11, 16, 23, 24], "desir": [3, 16], "fullchain": [3, 6, 7], "want": [3, 9, 10, 11, 12, 16, 18, 23, 24, 28, 29, 44], "avoid": [3, 11, 12, 17, 18, 23, 25, 26, 27, 29, 30, 34, 39, 40, 41, 44], "accident": [3, 28, 29, 30, 31], "old": [3, 11, 23, 24, 39, 40, 44], "number": [3, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 38, 39, 40, 41, 42, 43, 44], "dai": [3, 11, 12, 14, 39, 40, 41], "left": [3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "being": [3, 11, 17, 30, 31, 39, 40, 41], "cert_dai": [3, 11], "challenge_data": [3, 5], "retrieve_all_altern": 3, "offer": [3, 9, 10], "These": [3, 15, 21, 23, 24, 28, 38, 42], "togeth": [3, 16, 26], "all_chain": 3, "select_chain": 3, "criteria": 3, "select": [3, 5, 10, 18, 26, 30, 31], "until": [3, 7, 11, 14], "criterium": 3, "header": [3, 5, 6], "determinist": 3, "everi": [3, 11, 12, 18, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 38, 39, 40, 41, 44], "consist": [3, 17, 18, 23, 25, 26, 27, 29, 30, 34, 40], "condit": [3, 14, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "issuer": [3, 7, 14, 21, 22, 23, 24, 38, 39, 40, 42, 43, 44], "authority_key_identifi": [3, 21, 22, 23, 24, 38, 39], "authoritykeyidentifi": [3, 21, 22, 23, 24, 38, 39], "extens": [3, 5, 6, 14, 18, 21, 22, 23, 24, 38, 39, 42, 43, 44], "base": [3, 11, 16, 17, 30, 31], "form": [3, 7, 11, 38, 39], "c4": 3, "a7": 3, "b1": [3, 30, 31, 34], "a4": 3, "7b": 3, "2c": [3, 30, 31, 34], "71": [3, 30, 31, 34], "fa": 3, "db": 3, "e1": [3, 30, 31, 34], "4b": 3, "90": [3, 11, 12, 40, 41], "75": [3, 30, 31, 34], "ff": [3, 21, 22, 23, 24, 28, 29, 32, 33, 38, 39], "15": [3, 6, 11, 26, 40, 41], "60": [3, 11, 12, 30, 31, 34], "85": [3, 30, 31, 34], "89": 3, "would": [3, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "commonnam": [3, 21, 22, 23, 24, 38, 39, 40, 42, 43, 44], "my": [3, 30, 43, 44], "prefer": [3, 21, 22, 28, 38, 39, 42, 43, 44], "root": [3, 11, 14, 15, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "cn": [3, 9, 11, 14, 23, 24, 44], "subject_key_identifi": [3, 21, 22, 23, 24, 38, 39], "subjectkeyidentifi": [3, 21, 22, 38, 39], "a8": 3, "4a": [3, 21, 22, 28, 29, 32, 33, 38, 39], "6a": [3, 30, 31, 34], "63": [3, 11, 21, 22, 28, 29, 32, 33, 38, 39], "04": [3, 21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "7d": [3, 44], "dd": [3, 17, 21, 22, 23, 24, 30, 31, 34, 38, 39], "ba": [3, 21, 22, 28, 29, 32, 33, 38, 39], "e6": [3, 21, 22, 28, 29, 32, 33, 38, 39], "d1": 3, "39": [3, 30, 31, 34], "b7": 3, "a6": [3, 30, 31, 34], "45": 3, "65": 3, "ef": [3, 30, 31, 34], "f3": 3, "a1": [3, 30, 31, 34], "test_certif": 3, "exclud": [3, 17, 21, 22, 23, 24], "leaf": [3, 7], "ident": [3, 17], "last": [3, 16, 21, 22, 38, 39, 42, 43, 44], "furthest": 3, "awai": 3, "Its": 3, "safe_file_oper": [3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "strict": [3, 6, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "oper": [3, 11, 16, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "function": [3, 11, 16, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "ensur": [3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "proper": [3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "permiss": [3, 11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "corrupt": [3, 11, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40, 44], "At": [3, 17], "least": [3, 11, 23, 24, 35, 36], "control": [3, 6, 12, 14, 21, 28, 31, 38, 42, 43], "over": 3, "rate": [3, 4], "limit": [3, 4, 16, 17], "8737": [3, 5, 6], "acme_challenge_cert_help": [3, 15], "prepar": [3, 15], "certificate_complete_chain": [3, 15], "find": [3, 7, 12], "acme_certificate_revok": [3, 15], "account_private_kei": 3, "httpd": [3, 4, 5, 6], "crt": [3, 4, 5, 6, 11, 12, 39, 40, 41, 44], "sample_com_challeng": [3, 5], "hashi": 3, "vault": [3, 16, 31], "lookup": [3, 7, 21, 24, 28, 31, 32, 37, 38, 41, 42], "hashi_vault": 3, "secret": [3, 30], "copi": [3, 7, 9, 11, 12, 24, 40, 41], "www": [3, 7, 9, 10, 11, 14, 17, 21, 22, 23, 24, 38, 39, 40, 41], "resource_valu": 3, "item": [3, 5, 23, 37], "loop": [3, 5, 17, 18, 23, 25, 26, 27, 30, 34, 37, 40], "dict2item": 3, "v01": 3, "30": [3, 11, 30, 31, 34], "aw": 3, "route53": 3, "zone": 3, "txt": [3, 12, 17], "ttl": 3, "enclos": 3, "quot": [3, 17, 18, 23, 25, 26, 27, 30, 34, 40], "regex_replac": [3, 23], "map": [3, 11, 23, 39], "challenge_data_dn": 3, "dst": 3, "x3": 3, "cross": 3, "identrust": 3, "As": [3, 17, 18, 23, 25, 26, 27, 30, 34, 40], "long": [3, 12, 14], "switch": 3, "own": [3, 9, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40, 41, 44], "isrg": 3, "x1": 3, "compat": [3, 11, 14, 17, 26], "older": [3, 16, 26, 27, 30, 31, 34, 40], "client": [3, 11, 12, 14, 17, 23, 24, 40, 41, 42, 43, 44], "o": [3, 11, 14, 17, 18, 23, 24, 25, 26, 27, 30, 34, 40], "digit": 3, "signatur": [3, 7, 15, 17, 21, 22, 23, 24, 36, 38, 39, 40, 42, 43, 44], "co": 3, "4": [3, 4, 8, 14, 16, 21, 22, 23, 24, 26, 34, 35, 36, 38, 39, 40], "itself": [3, 44], "concaten": [3, 7], "full_chain": 3, "token": [3, 17], "a5b1c3d2e9f8g7h6": 3, "12345": [3, 6, 21, 22, 38, 39], "2022": [3, 26], "08": [3, 11, 30, 31, 34], "01t01": 3, "02": [3, 11], "34z": 3, "04t01": 3, "03": [3, 11, 23, 25, 26, 27, 30, 34, 40, 44], "45z": 3, "per": [3, 26], "yet": [3, 6], "_acm": 3, "known": [3, 11, 12, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 32, 33, 34, 38, 39, 40, 42, 43, 44], "evagxfads6psrb2lav9izf17dt3juxgj": 3, "pct92wr": 3, "oa": 3, "resource_origin": 3, "origin": [3, 11, 14, 21, 22, 23, 25, 26, 27, 30, 34, 38, 39, 40, 44], "produc": 3, "blob": 3, "put": 3, "acmevalid": 3, "x509": 3, "editor": 3, "rfc8737": 3, "b64decod": [3, 9, 41], "jinja": 3, "filter": [3, 22, 29, 33, 39, 43], "extract": [3, 14, 21, 22, 28, 38, 39, 44], "ilirfxkkxa": 3, "17dt3juxgj": 3, "finalization_uri": 3, "michael": 3, "gruener": 3, "mgruener": 3, "exactli": [4, 14, 18, 21, 22, 27, 38, 39], "private_key_src": [4, 5], "private_key_cont": [4, 5, 23, 24, 26, 34], "valu": 4, "private_key_passphras": [4, 5, 27], "revoke_reason": 4, "One": [4, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 44], "revoc": [4, 11, 15, 23, 24, 42], "reasoncod": 4, "defin": [4, 10, 11, 12, 13, 16, 23, 24, 30, 31, 40, 41, 44], "rfc5280": [4, 23, 24], "possibl": [4, 11, 14, 21, 22, 38, 39], "unspecifi": [4, 17, 18, 23, 25, 26, 27, 30, 34, 40, 42, 43, 44], "keycompromis": 4, "cacompromis": 4, "affiliationchang": 4, "supersed": [4, 23, 24, 42, 43, 44], "cessationofoper": 4, "certificatehold": 4, "removefromcrl": 4, "9": [4, 14, 15, 18, 30, 31, 39, 40], "privilegewithdrawn": 4, "aacompromis": 4, "return": 4, "alreadi": [4, 11, 12, 16, 17, 18, 23, 24, 25, 26, 30, 34, 40, 41, 43, 44], "unchang": [4, 16], "depend": [4, 8, 11, 14, 21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "raw": [5, 6, 14, 27, 30, 31], "convert": [5, 15, 18, 21, 22, 28, 30, 31, 38, 39, 42, 43, 44], "simpl": [5, 9, 10], "gener": [5, 7, 11, 15, 16, 21, 22, 27, 29, 33, 35, 36, 38, 39, 43], "dictsort": 5, "sample_com_challenge_cert": 5, "regular_certif": 5, "deliv": 5, "regular": [5, 6], "connect": [5, 6, 14], "except": [5, 6, 14, 18, 21, 22, 23, 24, 26, 30, 31, 38, 39, 44], "challenge_certif": 5, "achiev": 5, "veri": [5, 10, 43], "nginx": [5, 6], "search": 5, "ssl_preread": 5, "ssl_preread_alpn_protocol": 5, "rout": 5, "private_kei": [5, 17, 31], "identifier_typ": 5, "self": [5, 9, 15, 23, 24, 39, 40, 41], "place": [5, 21, 22, 28, 29, 32, 33, 38, 39], "attempt": [6, 18], "encount": 6, "wish": 6, "investig": 6, "sent": [6, 12], "method": [6, 12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "otherwis": [6, 11, 14, 16, 17, 18, 21, 22, 23, 25, 26, 27, 30, 34, 38, 39, 40, 42, 43, 44], "fail_on_acme_error": 6, "id": [6, 11, 12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "localhost": [6, 14, 23, 41], "m": [6, 14, 17, 23, 24, 39, 40, 41, 44], "acct": 6, "newaccount": 6, "termsofserviceagre": 6, "account_cr": 6, "locat": [6, 11, 12, 40, 43, 44], "account_info": 6, "to_json": 6, "certificate_request": 6, "someth": [6, 26, 39], "went": 6, "wrong": 6, "output_json": 6, "selectattr": 6, "equalto": 6, "http01challeng": 6, "manual": [6, 12], "a85k3x9f91a4": 6, "random": [6, 12], "33417": 6, "keychang": 6, "meta": 6, "caaident": 6, "termsofservic": 6, "le": 6, "sa": 6, "novemb": 6, "2017": 6, "pdf": 6, "websit": 6, "newnonc": 6, "nonc": 6, "neword": 6, "revokecert": 6, "lowercas": 6, "boulder": 6, "cach": 6, "max": 6, "ag": 6, "close": [6, 16], "length": [6, 18, 40], "904": 6, "applic": [6, 11, 12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "cooki": 6, "cookies_str": 6, "wed": 6, "07": [6, 21, 22, 28, 29, 32, 33, 38, 39], "nov": 6, "2018": [6, 11], "12": [6, 14, 15, 23, 24, 25, 30, 31, 34, 40, 41], "34": [6, 21, 22, 28, 29, 32, 33, 38, 39], "56": [6, 30, 31, 34], "gmt": [6, 40, 41], "44": [6, 21, 22, 23, 24, 38, 39], "rel": [6, 17, 23, 24, 39, 40, 41, 44], "msg": [6, 14, 21, 28, 31, 32, 37, 38, 42, 43], "ok": 6, "byte": [6, 16, 21, 22, 23, 24, 38, 39], "pragma": 6, "replai": 6, "1234567890abcdefghijklmnopqrstuvwxyzabcdefgh": 6, "200": 6, "transport": [6, 29], "604800": 6, "46161": 6, "frame": 6, "deni": 6, "pars": [6, 7, 14, 17, 18, 21, 22, 23, 25, 26, 27, 29, 30, 34, 38, 39, 40], "output_text": 6, "text": [6, 11, 12], "see": [7, 9, 14, 16, 17, 18, 44], "note": [7, 9, 16, 17, 21, 22, 25, 26, 27, 28, 29, 30, 31, 38, 42], "input_chain": 7, "intermediate_certif": 7, "filenam": [7, 11, 17, 18, 23, 25, 26, 30, 34, 40, 44], "subdirectori": 7, "scan": 7, "root_certif": 7, "www_ansible_com": 7, "completechain": 7, "join": [7, 14, 21, 28, 38], "complete_chain": 7, "rootchain": 7, "input": [7, 12, 26], "python": [8, 14, 21, 22, 25, 26, 28, 29, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "crypto_inform": 8, "show": [8, 9, 10, 21, 28, 31, 32, 38, 40, 42], "openssl_pres": 8, "usr": [8, 17, 18, 23, 25, 26, 27, 30, 34, 40], "bin": [8, 17, 18, 23, 25, 26, 27, 30, 34, 40], "1m": 8, "version_output": 8, "dec": 8, "2021": 8, "python_cryptography_cap": 8, "python_cryptography_instal": 8, "theoret": 8, "higher": [8, 11, 21, 28, 32, 37, 38, 42], "libssl": 8, "has_dsa": 8, "dsa": [8, 10, 18, 21, 22, 28, 29, 30, 31, 32, 33, 35, 36, 38, 39], "has_dsa_sign": 8, "has_ec": 8, "has_ec_sign": 8, "has_ed25519": 8, "ed25519": [8, 18, 21, 22, 28, 29, 30, 31, 32, 33, 35, 36, 38, 39], "has_ed25519_sign": 8, "has_ed448": 8, "ed448": [8, 21, 22, 28, 29, 30, 31, 32, 33, 35, 36, 38, 39], "has_ed448_sign": 8, "has_rsa": 8, "has_rsa_sign": 8, "has_x25519": 8, "x25519": [8, 10, 21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "has_x25519_seri": 8, "serial": [8, 11, 14, 17, 21, 22, 23, 24, 38, 39, 42, 43, 44], "has_x448": 8, "x448": [8, 21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "python_cryptography_import_error": 8, "commun": [9, 10], "crypto": [9, 10], "guid": [9, 10], "exampl": [9, 10], "password": [9, 10, 11, 12, 16, 18, 23, 24, 26, 36, 40, 41, 44], "protect": [9, 10, 16, 18, 23, 24, 30, 31, 34, 36, 40, 41, 44], "secret_ca_passphras": 9, "instruct": [9, 12], "ask": 9, "pai": 9, "commerci": [9, 23, 24], "passphras": [9, 10, 16, 18, 23, 24, 26, 27, 28, 29, 30, 31, 34, 36, 40, 41, 44], "privatekey_path": [9, 10, 22, 23, 24, 26, 33, 34, 35, 36, 39, 40, 41, 44], "privatekey_passphras": [9, 10, 23, 24, 26, 34, 36, 40, 41, 44], "common_nam": [9, 10, 22, 23, 24], "use_common_name_for_san": [9, 23, 24], "san": [9, 10, 11, 23, 24], "don": 9, "basic_constraint": [9, 21, 22, 23, 24, 38, 39], "basic_constraints_crit": [9, 21, 22, 23, 24, 38, 39], "key_usag": [9, 21, 22, 23, 24, 38, 39, 40], "keycertsign": 9, "key_usage_crit": [9, 21, 22, 23, 24, 38, 39], "ca_csr": 9, "x509_certif": [9, 10, 12, 15, 20, 23, 24, 25, 26, 30, 31, 34, 35, 39, 41], "selfsign": [9, 10, 39, 40, 41], "x509_certificate_pip": [9, 15, 23, 24, 30, 31, 34, 39, 40], "server_1": 9, "while": [9, 11, 12, 30, 31, 40, 41], "our": [9, 41], "server_2": 9, "materi": [9, 29, 31], "leav": [9, 29], "respect": [9, 16, 21, 23, 24, 28, 32, 38], "delegate_to": [9, 14, 41], "run_onc": [9, 14], "subject_alt_nam": [9, 10, 11, 21, 22, 23, 24, 28, 38, 39, 40], "ownca": [9, 40, 41], "ownca_path": [9, 40, 41], "ownca_privatekey_path": [9, 40, 41], "ownca_privatekey_passphras": [9, 40, 41], "ownca_not_aft": [9, 40, 41], "365d": [9, 40, 41], "year": [9, 10, 11, 40, 41], "ownca_not_befor": [9, 40, 41], "1d": [9, 30, 31, 34, 39], "yesterdai": 9, "abov": 9, "procedur": 9, "idempot": [9, 16, 17, 26, 31, 40, 41, 44], "extend": [9, 11], "stat": 9, "certificate_exist": 9, "slurp": [9, 41], "els": [9, 26], "kind": 10, "start": [10, 21, 22, 28, 29, 32, 33, 38, 39, 40, 41], "paramet": [10, 15, 32, 37], "4096": [10, 18, 25, 29, 30, 31, 33], "bit": [10, 18, 21, 22, 25, 28, 29, 30, 31, 32, 33, 38, 39], "size": [10, 12, 16, 18, 21, 22, 25, 28, 29, 30, 31, 32, 33, 38, 39], "changem": 10, "proce": 10, "selfsigned_not_aft": [10, 40, 41], "roughli": 10, "selfsigned_not_befor": [10, 40, 41], "now": [10, 11, 17, 40, 41, 44], "properti": 10, "constraint": [10, 23, 24], "organization_nam": [10, 23, 24], "inc": [10, 11], "reissu": 11, "credenti": [11, 12, 40, 41], "organ": [11, 42], "system": [11, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "those": [11, 17, 18, 23, 25, 26, 27, 30, 34, 40], "pyyaml": [11, 12], "11": [11, 12, 14, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 38, 39, 40, 44], "additional_email": 11, "receiv": [11, 12, 17, 18, 23, 25, 26, 27, 30, 34, 40], "deliveri": 11, "notic": 11, "notif": 11, "backup": [11, 18, 23, 25, 26, 27, 30, 31, 34, 40, 44], "made": [11, 12, 17], "cert_expiri": 11, "compliant": 11, "2020": [11, 17, 18, 23, 25, 26, 27, 30, 34, 40], "23": 11, "23t15": 11, "00": [11, 17, 21, 22, 23, 24, 30, 31, 34, 38, 39, 40, 41], "05z": 11, "request_typ": 11, "issuanc": [11, 40, 41], "subsequ": 11, "initi": [11, 14], "month": [11, 40, 41], "choos": 11, "adjust": [11, 18, 40, 41], "eastern": 11, "est": [11, 40, 41], "unintend": 11, "effect": 11, "pool": 11, "inventori": 11, "model": 11, "cert_lifetim": 11, "lifetim": [11, 40, 41], "cert_typ": 11, "cds_individu": 11, "cds_group": 11, "cds_ent_lit": [11, 40, 41], "cds_ent_pro": [11, 40, 41], "smime_": [11, 40, 41], "p1y": 11, "p2y": 11, "p3y": 11, "standard_ssl": [11, 40, 41], "advantage_ssl": [11, 40, 41], "uc_ssl": [11, 40, 41], "ev_ssl": [11, 40, 41], "wildcard_ssl": [11, 40, 41], "private_ssl": [11, 40, 41], "pd_ssl": [11, 40, 41], "code_sign": 11, "ev_code_sign": 11, "client_id": [11, 12], "under": [11, 12], "primari": [11, 12], "cannot": [11, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 44], "distinguish": 11, "repres": 11, "64": 11, "around": [11, 29], "overrid": [11, 21, 28, 32, 37, 38, 42], "eku": 11, "ou": [11, 14, 23, 24], "organiz": 11, "unit": 11, "replac": [11, 31, 44], "ti": 11, "ct_log": 11, "complianc": 11, "browser": 11, "transpar": 11, "ct": 11, "log": [11, 17, 28, 29, 30, 31], "best": [11, 17, 18, 23, 25, 26, 27, 30, 34, 40], "practic": 11, "techniqu": 11, "owner": [11, 12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "monitor": 11, "elig": [11, 12], "custom_field": 11, "date1": 11, "date2": 11, "date3": 11, "date4": 11, "date5": 11, "dropdown1": 11, "dropdown": 11, "dropdown2": 11, "dropdown3": 11, "dropdown4": 11, "dropdown5": 11, "email1": 11, "email2": 11, "email3": 11, "email4": 11, "email5": 11, "number1": 11, "float": [11, 16], "number2": 11, "number3": 11, "number4": 11, "number5": 11, "text1": 11, "maximum": [11, 21, 22, 28, 29, 32, 33, 38, 39, 40, 41], "500": 11, "charact": 11, "text10": 11, "text11": 11, "text12": 11, "text13": 11, "text14": 11, "text15": 11, "text2": 11, "text3": 11, "text4": 11, "text5": 11, "text6": 11, "text7": 11, "text8": 11, "text9": 11, "server_auth": 11, "client_auth": 11, "server_and_client_auth": 11, "end_user_key_storage_agr": 11, "user": [11, 15, 16, 18, 23, 25, 26, 27, 30, 34, 40, 44], "code": 11, "cryptograph": [11, 15], "hardwar": 11, "csp": 11, "subscript": 11, "acknowledg": 11, "entrust_api_client_cert_key_path": [11, 12, 40, 41], "entrust_api_client_cert_path": [11, 12, 40, 41], "entrust_api_kei": [11, 12, 40, 41], "entrust_api_specification_path": [11, 12, 40, 41], "configur": [11, 12, 13, 16, 17, 18, 21, 23, 25, 26, 27, 28, 30, 31, 32, 34, 37, 38, 40, 41, 42, 44], "keep": [11, 12, 30, 40, 41], "download": [11, 12, 40, 41], "cloud": [11, 12, 40, 41], "net": [11, 12, 40, 41], "entrustcloud": [11, 12, 40, 41], "cm": [11, 12, 40, 41], "yaml": [11, 12, 40, 41], "entrust_api_us": [11, 12, 40, 41], "usernam": [11, 12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 41, 44], "regardless": 11, "within": [11, 12], "past": [11, 38, 39], "full_chain_path": 11, "unless": [11, 12, 16, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "behavior": [11, 18, 26, 30, 31, 40], "neither": 11, "nor": 11, "reus": 11, "unapprov": 11, "failur": [11, 14], "reserv": 11, "futur": 11, "calcul": 11, "tracking_id": 11, "obtain": [11, 12], "act": [11, 17], "upon": [11, 21, 22, 28, 29, 32, 33, 38, 39], "exmapl": 11, "refer": 11, "validate_onli": 11, "cautiou": 11, "along": 11, "requester_email": 11, "track": [11, 40, 41], "requester_nam": 11, "requester_phon": 11, "phone": [11, 40, 41], "arrai": 11, "subjectaltnam": [11, 23, 24], "understand": [11, 16], "tld": 11, "save": [11, 25], "referenc": 11, "tracking_info": 11, "free": 11, "attach": [11, 23, 24], "partial": 11, "bare": 11, "minimum": [11, 18, 40, 41], "jo": [11, 40], "jdoe": [11, 23, 40], "555": [11, 40], "5555": [11, 40], "apiusernam": [11, 12, 40], "lv": [11, 12, 40], "32": [11, 12, 17, 21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40], "cd9lnt": [11, 12, 40], "20": [11, 23], "79": [11, 30, 31, 34], "migrat": 11, "2378915": 11, "rather": 11, "overridden": [11, 25, 26], "testcertif": 11, "administr": [11, 12], "via": [11, 40], "itsupport": 11, "jsmith": 11, "admin": [11, 12], "invoic": 11, "25": [11, 30, 31, 34], "342": 11, "sale": 11, "red": 11, "backup_fil": [11, 23, 25, 26, 27, 30, 34, 40, 44], "2019": [11, 17, 23, 25, 26, 27, 30, 34, 40, 41, 44], "09": [11, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 44], "22": [11, 21, 22, 23, 24, 25, 26, 27, 30, 31, 34, 38, 39, 40, 44], "backup_full_chain_fil": 11, "253": 11, "cert_detail": 11, "guarante": 11, "forward": [11, 17], "releas": [11, 17], "take": [11, 17, 18, 21, 22, 23, 25, 28, 29, 30, 32, 33, 34, 38, 39, 40, 42, 43, 44], "howev": [11, 16, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "audit": 11, "cert_statu": 11, "expand": 11, "approv": [11, 12], "declin": [11, 12], "na": 11, "pending_quorum": 11, "suspend": 11, "serial_numb": [11, 14, 17, 38, 39, 42, 43, 44], "1235262234164342": 11, "380079": 11, "chri": [11, 12], "trufan": [11, 12], "ctrufan": [11, 12], "verification_method": 12, "domain_statu": 12, "dns_content": 12, "dns_locat": 12, "dns_resource_typ": 12, "web_serv": 12, "file_cont": 12, "file_loc": 12, "e": [12, 23, 24], "were": [12, 14], "pure": 12, "domain_nam": 12, "reverifi": 12, "verification_email": 12, "ownership": [12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "whoi": 12, "construct": 12, "webmast": 12, "hostmast": 12, "postmast": 12, "subdomain": 12, "top": 12, "level": [12, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "example1": 12, "example2": 12, "preconstruct": 12, "namespac": 12, "exact": [12, 44], "verif": 12, "prove": 12, "There": [12, 16], "small": [12, 15], "delai": 12, "typic": 12, "Be": 12, "awar": 12, "mani": [12, 14, 44], "ecs_certif": [12, 15], "revalid": 12, "fewer": [12, 40, 41], "ev": 12, "belong": [12, 23, 24], "expect": [12, 30, 31, 39, 40, 41, 44], "ab23cd41432522ff2526920393982fab": 12, "_pki": 12, "cancel": 12, "initial_verif": 12, "re_verif": 12, "ev_days_remain": 12, "submiss": 12, "never": [12, 14, 17, 18, 30, 31, 40, 41, 44], "greater": [12, 17], "ov_days_remain": 12, "ev_elig": 12, "94": [12, 21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "ov_elig": 12, "abcd": 12, "ov": 12, "129": 12, "declar": 13, "core": [13, 15], "No": 13, "sni": 14, "proxy_host": 14, "asn1_base64": 14, "asn": [14, 21, 22, 38, 39, 40, 41, 42, 43, 44], "claim": 14, "eventu": 14, "ca_cert": [14, 41], "cipher": [14, 16, 30, 31], "libressl": 14, "fine": 14, "proxi": 14, "proxy_port": 14, "8080": 14, "server_nam": 14, "starttl": 14, "mysql": 14, "succe": 14, "rdp": 14, "3389": 14, "googl": 14, "443": 14, "expire_dai": 14, "not_aft": [14, 38, 39, 40], "to_datetim": 14, "d": [14, 17, 39, 40, 41, 44], "h": [14, 17, 39, 40, 41, 44], "sz": 14, "ansible_date_tim": 14, "iso8601": 14, "dt": 14, "asn1_data": 14, "surviv": 14, "also": [14, 17, 18, 44], "displai": [14, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "github": [14, 15], "80258": 14, "usual": [14, 17, 21, 22, 38, 39], "malform": [14, 21, 22, 38, 39], "critic": [14, 21, 22, 23, 24, 38, 39, 42, 43, 44], "not_befor": [14, 38, 39, 40], "signature_algorithm": [14, 17, 38, 39, 40], "john": 14, "westcott": 14, "iv": 14, "author": 15, "newer": [15, 17, 30, 31, 35, 36], "matrix": 15, "room": 15, "im": 15, "question": 15, "irc": 15, "channel": [15, 29], "libera": 15, "network": 15, "mail": 15, "project": 15, "subscrib": 15, "acm": [15, 40], "requir": [15, 32, 37], "send": [15, 26, 42, 43], "direct": 15, "crypto_info": 15, "capabl": 15, "entrust": [15, 40, 41], "ecs_domain": 15, "get_certif": 15, "port": [15, 17], "luks_devic": 15, "luk": 15, "devic": 15, "openssh_cert": 15, "openssh": [15, 34], "openssh_keypair": [15, 34], "openssl_csr_info": [15, 23, 24, 40], "openssl_dhparam": [15, 23, 24, 26, 30, 31, 34, 40, 41], "diffi": [15, 23, 24, 26, 30, 31, 34, 40, 41], "hellman": [15, 23, 24, 26, 30, 31, 34, 40, 41], "openssl_pkcs12": [15, 23, 24, 25, 30, 31, 34, 40, 41], "pkc": [15, 17, 23, 24, 25, 30, 31, 34, 40, 41], "archiv": [15, 23, 24, 25, 30, 31, 34, 40, 41], "openssl_privatekey_convert": 15, "openssl_privatekey_info": [15, 30, 31, 33, 40], "openssl_publickei": [15, 23, 24, 25, 26, 27, 30, 31, 33, 40, 41], "openssl_publickey_info": 15, "openssl_signatur": [15, 35], "openssl_signature_info": [15, 36], "x509_certificate_info": [15, 19, 40], "509": [15, 43], "x509_crl": [15, 43], "crl": [15, 23, 24], "x509_crl_info": 15, "split_pem": 15, "split": 15, "destroi": 16, "open": 16, "cryptsetup": 16, "wipef": 16, "lsblk": 16, "blkid": 16, "label": [16, 21, 22, 28, 38, 39, 42, 43, 44], "uuid": 16, "pre": [16, 26], "kernel": 16, "ae": [16, 30, 31, 34], "plain": 16, "spec": 16, "essiv": 16, "cbc": 16, "sha256": [16, 18, 21, 22, 23, 24, 28, 29, 30, 31, 32, 33, 34, 38, 39, 40, 41, 44], "dev": 16, "sda1": 16, "force_remove_last_kei": 16, "bewar": 16, "hash": [16, 21, 22, 28, 29, 32, 33, 38, 39], "setup": 16, "scheme": 16, "volum": 16, "digest": [16, 23, 24, 40, 41, 42, 43, 44], "keyfil": 16, "unlock": 16, "plaintext": 16, "danger": 16, "keysiz": [16, 30], "luks2": 16, "later": 16, "luks1": 16, "new_keyfil": 16, "add": [16, 17], "keyslot": 16, "new_passphras": 16, "pbkdf": 16, "deriv": 16, "argon2i": 16, "argon2id": 16, "pbkdf2": 16, "iteration_count": 16, "iter": 16, "count": 16, "iteration_tim": 16, "millisecond": 16, "memori": 16, "cost": 16, "kilobyt": 16, "argon": 16, "parallel": 16, "thread": 16, "perf_no_read_workqueu": 16, "bypass": 16, "dm": 16, "crypt": 16, "intern": 16, "workqueu": 16, "synchron": 16, "perf_no_write_workqueu": 16, "perf_same_cpu_crypt": 16, "cpu": 16, "io": 16, "unbound": 16, "balanc": 16, "perf_submit_from_crypt_cpu": 16, "offload": 16, "separ": [16, 17, 21, 22, 23, 24, 38, 39], "situat": [16, 18, 30, 31], "block": [16, 31], "singl": 16, "degrad": 16, "significantli": 16, "persist": 16, "metadata": 16, "them": [16, 17, 18, 23, 25, 26, 27, 30, 34, 40], "next": [16, 29], "remove_keyfil": 16, "filesystem": [16, 17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "remove_passphras": 16, "sector_s": 16, "sector": 16, "lock": 16, "suffic": 16, "explicit": 16, "With": 16, "loop0": 16, "mycrypt": 16, "keyfile2": 16, "personallabelnam": 16, "03ecd578": 16, "fad4": 16, "4e6c": 16, "9348": 16, "842e3e8fa340": 16, "suppli": 16, "c1da9a58": 16, "2fde": 16, "4256": 16, "9d9f": 16, "6ab008b4dd1b": 16, "jan": 16, "pokorni": 16, "japokorn": 16, "regener": [17, 18, 23, 24, 25, 26, 30, 31, 34, 40, 41, 44], "ssh": [17, 18], "keygen": [17, 18], "attr": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "flag": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "look": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "man": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "page": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "chattr": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "lsattr": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "equival": [17, 18, 30], "fed": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "chown": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "preserv": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "ignore_timestamp": [17, 40, 41, 44], "valid_from": 17, "valid_to": 17, "meet": 17, "chmod": [17, 18, 23, 25, 26, 27, 30, 34, 40], "rememb": [17, 18, 23, 25, 26, 27, 30, 34, 40], "octal": [17, 18, 23, 25, 26, 27, 30, 34, 40], "correctli": [17, 18, 23, 25, 26, 27, 30, 34, 40], "644": [17, 18, 23, 25, 26, 27, 30, 34, 40], "1777": [17, 18, 23, 25, 26, 27, 30, 34, 40], "convers": [17, 18, 23, 25, 26, 27, 30, 34, 40], "zero": [17, 18, 23, 25, 26, 27, 30, 34, 40], "0755": [17, 18, 23, 25, 26, 27, 30, 34, 40], "sometim": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "circumst": [17, 18, 23, 25, 26, 27, 30, 34, 40], "rule": [17, 18, 23, 25, 26, 27, 30, 34, 40], "decim": [17, 18, 23, 25, 26, 27, 30, 34, 40], "unexpect": [17, 18, 23, 25, 26, 27, 30, 34, 40], "rwx": [17, 18, 23, 25, 26, 27, 30, 34, 40], "rw": [17, 18, 23, 25, 26, 27, 30, 34, 40], "g": [17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 32, 33, 34, 38, 39, 40], "r": [17, 18, 22, 23, 25, 26, 27, 29, 30, 33, 34, 39, 40], "umask": [17, 18, 23, 25, 26, 27, 30, 34, 40], "newli": [17, 18, 23, 25, 26, 27, 30, 34, 40], "cve": [17, 18, 23, 25, 26, 27, 30, 34, 40], "1736": [17, 18, 23, 25, 26, 27, 30, 34, 40], "clear": 17, "shell": 17, "agent": 17, "permit": [17, 21, 22, 23, 24], "pty": 17, "alloc": 17, "rc": 17, "sshd": 17, "x11": 17, "address_list": 17, "comma": 17, "netmask": 17, "pair": [17, 23, 24, 44], "cidr": 17, "numer": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "confus": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "pkcs11_provid": 17, "resid": 17, "share": 17, "libpkcs11": 17, "signing_kei": 17, "princip": 17, "By": [17, 18, 23, 25, 26, 27, 30, 31, 34, 40, 44], "public_kei": [17, 18, 21, 22, 28, 29, 38, 39, 40], "unread": 17, "partial_idempot": [17, 18, 30, 31], "valid_at": [17, 39, 40], "full_idempot": [17, 18, 30, 31], "compar": 17, "selevel": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "selinux": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "context": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "ml": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "mc": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "rang": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "_default": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "portion": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "polici": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "keyrevocationlist": 17, "again": [17, 42, 43], "serol": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "role": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "setyp": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "seuser": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "sha": 17, "refus": 17, "sha2": 17, "512": 17, "correspond": [17, 18, 30, 31], "sshd_config": 17, "casignaturealgorithm": 17, "keyword": [17, 31, 39, 40], "prior": 17, "unsafe_writ": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "influenc": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "atom": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "prevent": [17, 18, 23, 25, 26, 27, 29, 30, 34, 40, 44], "inconsist": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "just": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "broken": [17, 18, 23, 25, 26, 27, 30, 31, 34, 40, 44], "docker": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "mount": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "insid": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "unsaf": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "manner": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "doesn": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "race": [17, 18, 23, 25, 26, 27, 30, 34, 40, 44], "use_ag": 17, "interpret": [17, 39, 40, 41, 44], "utc": [17, 39, 40, 41, 43, 44], "mainli": 17, "timespec": [17, 39, 40, 41, 44], "NOT": [17, 31, 40, 41, 44], "absolut": [17, 22, 29, 33, 39, 40, 41, 43, 44], "yyyi": 17, "mm": 17, "ddthh": 17, "ss": 17, "hh": 17, "w": [17, 22, 29, 33, 39, 40, 41, 44], "32w1d2h": [17, 39, 40, 41, 44], "1970": 17, "01t00": 17, "earlier": [17, 40, 41], "express": 17, "comparison": 17, "forev": 17, "pub": [17, 18, 33], "week": [17, 39], "32w": 17, "2w": 17, "examplehost": 17, "21": 17, "2001": 17, "tmp": [17, 18, 35, 36], "bla": 17, "ca_public_kei": 17, "info": [17, 21, 22, 38, 39], "l": [17, 23, 24], "f": 17, "david": [17, 18], "kainz": [17, 18], "lolcub": [17, 18], "rsa1": 18, "ecdsa": [18, 35, 36], "opensshbin": 18, "decrypt": [18, 26], "private_key_format": 18, "pkcs1": [18, 27, 30, 31], "keypair": 18, "pkcs8": [18, 27, 30, 31], "conform": [18, 30, 31], "unknown": [18, 21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "therefor": 18, "1024": 18, "2048": [18, 25, 26, 30, 31], "suffici": 18, "fip": 18, "186": 18, "three": [18, 39, 40, 41, 44], "384": 18, "521": 18, "fix": 18, "id_ssh_rsa": 18, "super_secret_password": 18, "id_ssh_dsa": 18, "fingerprint": [18, 21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "r4yczxihvjedh2olfjvgi6y5xaytdcwk8vxkyzvyyfm": 18, "aaaab3nza": 18, "vel4e3xcw": 18, "name_encod": [21, 22, 28, 38, 39, 42, 43, 44], "idna": [21, 22, 28, 38, 39, 42, 43, 44], "key1": [21, 28, 38, 42], "value1": [21, 28, 38, 42], "key2": [21, 28, 38, 42], "value2": [21, 28, 38, 42], "idna2008": [21, 22, 28, 38, 39, 42, 43, 44], "idna2003": [21, 22, 28, 38, 39, 42, 43, 44], "unicod": [21, 22, 28, 38, 39, 42, 43, 44], "alt": [21, 28, 38], "authority_cert_issu": [21, 22, 23, 24, 38, 39], "idn": [21, 22, 38, 39, 42, 43, 44], "handl": [21, 22, 38, 39, 42, 43, 44], "authority_cert_serial_numb": [21, 22, 23, 24, 38, 39], "hexadecim": [21, 22, 38, 39], "33": [21, 22, 23, 24, 28, 29, 30, 31, 32, 33, 34, 38, 39], "55": [21, 22, 23, 24, 38, 39], "66": [21, 22, 23, 24, 30, 31, 34, 38, 39], "77": [21, 22, 23, 24, 30, 31, 34, 38, 39], "88": [21, 22, 23, 24, 30, 31, 34, 38, 39], "99": [21, 22, 23, 24, 30, 31, 34, 38, 39], "aa": [21, 22, 23, 24, 28, 29, 32, 33, 38, 39], "bb": [21, 22, 23, 24, 38, 39], "cc": [21, 22, 23, 24, 30, 31, 34, 38, 39], "ee": [21, 22, 23, 24, 30, 31, 34, 38, 39], "pathlen": [21, 22, 38, 39], "extended_key_usag": [21, 22, 23, 24, 38, 39, 40], "biometr": [21, 22, 38, 39], "dvc": [21, 22, 38, 39, 40], "stamp": [21, 22, 38, 39], "extended_key_usage_crit": [21, 22, 23, 24, 38, 39], "extensions_by_oid": [21, 22, 38, 39, 40], "oid": [21, 22, 38, 39], "24": [21, 22, 30, 31, 34, 38, 39], "mamcaqu": [21, 22, 38, 39], "der": [21, 22, 38, 39, 42, 43, 44], "encipher": [21, 22, 23, 24, 38, 39, 40], "name_constraints_crit": [21, 22, 23, 24], "name_constraint": [21, 22], "name_constraints_exclud": [21, 22, 23, 24], "subtre": [21, 22, 23, 24], "name_constraints_permit": [21, 22, 23, 24], "somedomain": [21, 22, 23, 24], "ocsp_must_stapl": [21, 22, 23, 24, 38, 39], "ocsp": [21, 22, 23, 24, 38, 39], "stapl": [21, 22, 23, 24, 38, 39], "ocsp_must_staple_crit": [21, 22, 23, 24, 38, 39], "begin": [21, 22, 28, 29, 38, 39], "miicijanbgkqhkig9w0baqefaaocag8a": [21, 28, 38], "public_key_data": [21, 22, 38, 39], "ecc": [21, 22, 28, 29, 30, 31, 32, 33, 38, 39], "_valu": [21, 28, 32, 38], "public_key_typ": [21, 22, 38, 39], "expon": [21, 22, 28, 29, 32, 33, 38, 39], "exponent_s": [21, 22, 28, 29, 32, 33, 38, 39], "subgroup": [21, 22, 28, 29, 32, 33, 38, 39], "span": [21, 22, 28, 29, 32, 33, 38, 39], "prime": [21, 22, 28, 29, 32, 33, 38, 39], "modulu": [21, 22, 28, 29, 32, 33, 38, 39], "arithmet": [21, 22, 28, 29, 32, 33, 38, 39], "q": [21, 22, 28, 29, 32, 33, 38, 39], "divid": [21, 22, 28, 29, 32, 33, 38, 39], "coordin": [21, 22, 28, 29, 32, 33, 38, 39], "publicli": [21, 22, 28, 29, 32, 33, 38, 39], "whose": [21, 22, 28, 29, 32, 33, 38, 39, 41], "discret": [21, 22, 28, 29, 32, 33, 38, 39], "logarithm": [21, 22, 28, 29, 32, 33, 38, 39], "public_key_fingerprint": [21, 22, 28, 29, 38, 39], "comput": [21, 22, 28, 29, 32, 33, 38, 39], "d4": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "b3": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "6d": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "c8": [21, 22, 28, 29, 32, 33, 38, 39], "ce": [21, 22, 28, 29, 32, 33, 38, 39], "4e": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "f6": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "29": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "4d": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "92": [21, 22, 28, 29, 32, 33, 38, 39], "a3": [21, 22, 28, 29, 32, 33, 38, 39], "b0": [21, 22, 28, 29, 32, 33, 38, 39], "c2": [21, 22, 28, 29, 32, 33, 38, 39], "bd": [21, 22, 28, 29, 32, 33, 38, 39], "bf": [21, 22, 28, 29, 32, 33, 38, 39], "43": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "0f": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "51": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "95": [21, 22, 28, 29, 32, 33, 38, 39], "2f": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "sha512": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "f7": [21, 22, 28, 29, 32, 33, 38, 39], "f0": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "8b": [21, 22, 28, 29, 32, 33, 38, 39], "5f": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "f9": [21, 22, 28, 29, 32, 33, 38, 39], "61": [21, 22, 28, 29, 32, 33, 38, 39], "0a": [21, 22, 28, 29, 32, 33, 38, 39], "68": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "f1": [21, 22, 28, 29, 30, 31, 32, 33, 34, 38, 39], "signature_valid": [21, 22], "repeat": [21, 22, 26, 38, 39, 42, 43, 44], "emailaddress": [21, 22, 23, 24, 38, 39], "subject_alt_name_crit": [21, 22, 23, 24, 38, 39], "subject_ord": [21, 22, 23, 24, 38, 39, 40], "tupl": [21, 22, 23, 24, 38, 39, 42, 43, 44], "low": [21, 28, 32, 37, 38, 42], "high": [21, 28, 32, 37, 38, 42], "prioriti": [21, 28, 32, 37, 38, 42], "lower": [21, 28, 32, 37, 38, 42], "interact": [22, 29, 33, 39, 40, 41], "remot": [22, 29, 33, 39, 40, 41, 43, 44], "load": [22, 27, 29, 33, 39], "variant": [22, 29, 33, 39, 43], "dump": [22, 26, 29, 33, 39], "nmiicijanbgkqhkig9w0baqefaaocag8a": [22, 29, 39], "yani": [22, 23, 24, 29, 30, 31, 34, 39, 40, 41], "guenan": [22, 23, 24, 29, 30, 31, 34, 39, 40, 41], "spredzi": [22, 23, 24, 29, 30, 31, 34, 39, 40, 41], "seem": [23, 24, 40], "overwrit": [23, 25, 30, 40], "keyusag": [23, 24], "extendedkeyusag": [23, 24], "basicconstraint": [23, 24], "That": [23, 24], "rid": [23, 24], "dirnam": [23, 24], "othernam": [23, 24], "ones": [23, 24, 25], "mostli": [23, 24], "hex": [23, 24], "colon": [23, 24], "overwrot": [23, 25, 26, 27, 30, 34, 40, 44], "accid": [23, 25, 26, 27, 30, 34, 40, 44], "basicconstraints_crit": [23, 24], "country_nam": [23, 24], "c": [23, 24], "countrynam": [23, 24], "create_subject_key_identifi": [23, 24], "crl_distribution_point": [23, 24], "distribut": [23, 24], "crl_issuer": [23, 24], "full_nam": [23, 24], "relative_nam": [23, 24], "key_compromis": [23, 24, 42, 43, 44], "ca_compromis": [23, 24, 42, 43, 44], "affiliation_chang": [23, 24, 42, 43, 44], "cessation_of_oper": [23, 24, 42, 43, 44], "certificate_hold": [23, 24, 42, 43, 44], "privilege_withdrawn": [23, 24, 42, 43, 44], "aa_compromis": [23, 24, 42, 43, 44], "email_address": [23, 24], "extkeyusag": [23, 24], "extkeyusage_crit": [23, 24], "extendedkeyusage_crit": [23, 24], "keyusage_crit": [23, 24], "locality_nam": [23, 24], "localitynam": [23, 24], "ocspmuststapl": [23, 24], "rfc7633": [23, 24], "ocspmuststaple_crit": [23, 24], "reject": [23, 24], "organizationnam": [23, 24, 38, 39, 42, 43, 44], "organizational_unit_nam": [23, 24], "organizationalunitnam": [23, 24], "privatekey_cont": [23, 24, 26, 34, 36, 40, 41, 44], "return_cont": [23, 25, 26, 30, 34, 40, 44], "state_or_province_nam": [23, 24], "st": [23, 24], "stateorprovincenam": [23, 24], "compon": [23, 24, 44], "subjectaltname_crit": [23, 24], "row": [23, 24, 44], "usecommonnameforsan": [23, 24], "fill": [23, 24], "2986": [23, 24], "unsupport": [23, 24], "inlin": [23, 24, 34, 41], "fr": 23, "dynam": 23, "with_dict": 23, "dns_server": 23, "special": 23, "digitalsignatur": [23, 24], "keyagr": [23, 24], "clientauth": [23, 24], "winrm": 23, "auth": 23, "311": 23, "utf8": 23, "pathlenconstraint": [23, 24], "privatekei": [23, 24, 26, 27, 30, 31, 34, 44], "dh": 25, "param": 25, "detect": [25, 26], "Or": 25, "dhparam": 25, "thom": 25, "wigger": 25, "thomwigg": 25, "pyopenssl": 26, "iter_s": 26, "maciter_s": 26, "export": [26, 27, 30, 31], "certificate_path": [26, 35, 36], "encryption_level": 26, "compatibility2022": 26, "softwar": 26, "38": [26, 30, 31, 34], "friendly_nam": 26, "friendli": 26, "50000": 26, "other_certif": 26, "ca_certif": 26, "other_certificates_parse_al": 26, "pkcs12": 26, "mechan": 26, "safe": 26, "addition": 26, "backward": 26, "opt": 26, "p12": 26, "raclett": 26, "ca_bundl": 26, "bundl": [26, 37], "0600": [26, 27, 30], "regen": 26, "guillaum": 26, "delpierr": 26, "gdelpierr": 26, "dest_passphras": 27, "dest_path": 27, "src_content": 27, "src_path": 27, "src_passphras": 27, "return_private_key_data": [28, 29], "private_data": [28, 29], "public_data": [28, 29, 32, 33], "fake": 29, "key_is_consist": 29, "check_consist": 29, "potenti": 29, "side": 29, "attack": 29, "machin": [29, 40, 41], "can_load_kei": 29, "can_parse_kei": 29, "eddsa": [30, 31], "particular": 30, "maxim": [30, 31], "interoper": [30, 31], "secp384r1": [30, 31], "secp256r1": [30, 31], "iana": [30, 31], "registri": [30, 31], "secp224r1": [30, 31], "secp256k1": [30, 31], "secp521r1": [30, 31], "discourag": [30, 31], "secp192r1": [30, 31], "brainpoolp256r1": [30, 31], "brainpoolp384r1": [30, 31], "brainpoolp512r1": [30, 31], "sect163k1": [30, 31], "sect163r2": [30, 31], "sect233k1": [30, 31], "sect233r1": [30, 31], "sect283k1": [30, 31], "sect283r1": [30, 31], "sect409k1": [30, 31], "sect409r1": [30, 31], "sect571k1": [30, 31], "sect571r1": [30, 31], "tradit": [30, 31], "auto_ignor": [30, 31], "mismatch": [30, 31], "format_mismatch": [30, 31], "everyth": [30, 31, 44], "treat": [30, 39, 44], "appropri": 30, "care": 30, "shown": 30, "reference_appendic": 30, "faq": 30, "minim": [30, 31], "hashlib": [30, 31, 34], "md5": [30, 31, 34], "84": [30, 31, 34], "72": [30, 31, 34], "8d": [30, 31, 34], "b5": [30, 31, 34], "6c": [30, 31, 34], "37": [30, 31, 34], "83": [30, 31, 34], "f5": [30, 31, 34], "4c": [30, 31, 34], "sha1": [30, 31, 34], "7c": [30, 31, 34], "5d": [30, 31, 34], "eb": [30, 31, 34], "41": [30, 31, 34], "7e": [30, 31, 34], "1a": [30, 31, 34], "c7": [30, 31, 34], "f8": [30, 31, 34], "sha224": [30, 31, 34], "19": [30, 31, 34], "ac": [30, 31, 34], "ed": [30, 31, 34], "18": [30, 31, 34, 40, 41], "50": [30, 31, 34], "d3": [30, 31, 34], "06": [30, 31, 34, 40, 41], "5c": [30, 31, 34], "b2": [30, 31, 34], "91": [30, 31, 34], "52": [30, 31, 34], "8c": [30, 31, 34], "cb": [30, 31, 34], "d5": [30, 31, 34], "e9": [30, 31, 34], "9b": [30, 31, 34], "46": [30, 31, 34], "ab": [30, 31, 34], "70": [30, 31, 34], "cf": [30, 31, 34], "76": [30, 31, 34], "4f": [30, 31, 34], "57": [30, 31, 34], "6e": [30, 31, 34], "97": [30, 31, 34], "df": [30, 31, 34], "de": [30, 31, 34], "sha384": [30, 31, 34], "d9": [30, 31, 34], "40": [30, 31, 34], "59": [30, 31, 34], "c3": [30, 31, 34], "a2": [30, 31, 34], "e4": [30, 31, 34], "0b": [30, 31, 34], "1c": [30, 31, 34], "0c": [30, 31, 34], "9e": [30, 31, 34], "af": [30, 31, 34], "da": [30, 31, 34], "2e": [30, 31, 34], "c0": [30, 31, 34], "9a": [30, 31, 34], "3a": [30, 31, 34], "3d": [30, 31, 34], "fd": [30, 31, 34], "5e": [30, 31, 34], "48": [30, 31, 34], "9f": [30, 31, 34], "fe": [30, 31, 34], "7f": [30, 31, 34], "3f": [30, 31, 34], "cd": [30, 31, 34], "a5": [30, 31, 34], "e7": [30, 31, 34], "13": [30, 31, 34, 44], "82": [30, 31, 34], "87": [30, 31, 34], "1f": [30, 31, 34], "28": [30, 31, 34], "53": [30, 31, 34], "86": [30, 31, 34], "69": [30, 31, 34], "35": [30, 31, 34], "1e": [30, 31, 34], "consol": 31, "relat": 31, "content_base64": 31, "return_current_kei": 31, "value_specified_in_no_log_paramet": 31, "async": 31, "reveal": 31, "TO": 31, "OR": 31, "IN": 31, "mozilla": 31, "sop": 31, "sops_encrypt": 31, "content_text": 31, "overwritten": 31, "set_fact": 31, "publickei": 34, "certificate_cont": [35, 41], "example_fil": [35, 36], "sig": [35, 36], "patrick": [35, 36], "pichler": [35, 36], "aveexi": [35, 36], "marku": [35, 36, 39, 40, 41], "teufelberg": [35, 36, 39, 40, 41], "markusteufelberg": [35, 36, 39, 40, 41], "word": [38, 39, 43], "whole": [38, 39], "issuer_ord": [38, 39, 42, 43, 44], "issuer_uri": [38, 39], "20190413202428z": [38, 39, 40, 42, 43, 44], "20190331202428z": [38, 39, 40, 44], "ocsp_uri": [38, 39], "respond": [38, 39], "1234": [38, 39, 42, 43, 44], "sha256withrsaencrypt": [38, 39, 40, 42, 43, 44], "openssl_certificate_info": 39, "short": [39, 40], "redirect": [39, 40], "fqcn": [39, 40], "dict": 39, "pattern": [39, 40, 41, 43, 44], "yyyymmddhhmmssz": [39, 40, 41, 43, 44], "csr_path": [39, 40, 41], "tomorrow": 39, "point_1": 39, "point_2": 39, "3w": 39, "notion": [40, 41], "openssl_certif": 40, "intend": [40, 41], "tini": 40, "acme_accountkey_path": 40, "accountkei": 40, "acme_chain": 40, "acme_challenge_path": 40, "3chost": 40, "3e": 40, "80": 40, "job": 40, "entrust_cert_typ": [40, 41], "entrust_not_aft": [40, 41], "stop": [40, 41], "365": [40, 41], "cover": [40, 41], "entrust_requester_email": [40, 41], "entrust_requester_nam": [40, 41], "entrust_requester_phon": [40, 41], "better": [40, 41], "ownca_cont": [40, 41], "ownca_create_authority_key_identifi": [40, 41], "ownca_create_subject_key_identifi": [40, 41], "ski": [40, 41], "create_if_not_provid": [40, 41], "always_cr": [40, 41], "never_cr": [40, 41], "ownca_digest": [40, 41], "On": [40, 41], "maco": [40, 41], "onward": [40, 41], "825": [40, 41], "appl": [40, 41], "en": [40, 41], "ht210176": [40, 41], "3650d": [40, 41], "ownca_privatekey_cont": [40, 41], "resp": [40, 41], "ownca_vers": [40, 41], "nowadai": [40, 41], "almost": [40, 41], "emul": 40, "selfsigned_create_subject_key_identifi": [40, 41], "selfsigned_digest": [40, 41], "selfsigned_notaft": [40, 41], "selfsigned_notbefor": [40, 41], "selfsigned_vers": [40, 41], "minut": [40, 41, 44], "mandatori": [40, 41, 44], "dedic": [40, 41], "onc": [40, 41, 44], "ansible_ca": 40, "assertonli": 40, "invalid_at": 40, "valid_in": 40, "one_day_ten_hour": 40, "1d10h": 40, "fixed_timestamp": 40, "20200331202428z": 40, "ten_second": 40, "result_csr": 40, "result_privatekei": 40, "sha512withrsaencrypt": 40, "subject_strict": 40, "issuer_strict": 40, "has_expir": 40, "key_usage_strict": 40, "extended_key_usage_strict": 40, "subject_alt_name_strict": 40, "ownca_cert": 41, "ownca_privatekei": 41, "hunter2": 41, "the_csr": 41, "list_revoked_certif": [42, 43], "larg": [42, 43], "enumer": [42, 43], "last_upd": [42, 43, 44], "next_upd": [42, 43, 44], "revoked_certif": [42, 43, 44], "invalidity_d": [42, 43, 44], "suspect": [42, 43, 44], "compromis": [42, 43, 44], "becam": [42, 43, 44], "invalidity_date_crit": [42, 43, 44], "issuer_crit": [42, 43, 44], "remove_from_crl": [42, 43, 44], "reason_crit": [42, 43, 44], "revocation_d": [42, 43, 44], "crl_mode": 44, "interest": 44, "collis": 44, "combin": 44, "2345": 44, "20191013152910z": 44, "20191001000000z": 44, "20191010010203z": 44}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"commun": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "crypto": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "acme_account_fact": 0, "acme_account_info": 1, "modul": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "retriev": [1, 8, 21, 28, 32, 38, 42, 43], "inform": [1, 21, 22, 28, 29, 32, 33, 38, 39, 42, 43], "acm": [1, 2, 3, 4, 5, 6], "account": [1, 2], "synopsi": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "requir": [1, 2, 3, 4, 5, 6, 7, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "paramet": [1, 2, 3, 4, 5, 6, 7, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "attribut": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36, 39, 40, 41, 43, 44], "note": [1, 2, 3, 4, 6, 11, 12, 14, 18, 23, 24, 35, 36, 39, 40, 41, 43, 44], "see": [1, 2, 3, 4, 5, 6, 11, 12, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43], "also": [1, 2, 3, 4, 5, 6, 11, 12, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43], "exampl": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "return": [1, 2, 3, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "valu": [1, 2, 3, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "author": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "collect": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "link": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "acme_account": 2, "creat": [2, 3, 9, 10], "modifi": 2, "delet": 2, "acme_certif": 3, "ssl": [3, 11], "tl": [3, 5, 11], "certif": [3, 4, 5, 7, 9, 10, 11, 12, 14, 17, 21, 22, 23, 24, 38, 39, 40, 41, 43, 44], "protocol": [3, 4], "acme_certificate_revok": 4, "revok": 4, "acme_challenge_cert_help": 5, "prepar": 5, "challeng": 5, "alpn": 5, "01": 5, "acme_inspect": 6, "send": 6, "direct": 6, "request": [6, 11, 12, 21, 22, 23, 24], "an": [6, 34], "server": 6, "certificate_complete_chain": 7, "complet": 7, "chain": 7, "given": 7, "set": [7, 9], "untrust": 7, "root": 7, "crypto_info": 8, "cryptograph": 8, "capabl": 8, "how": [9, 10], "small": 9, "ca": 9, "up": 9, "us": 9, "sign": [9, 10, 21, 22, 23, 24, 36], "self": 10, "ecs_certif": 11, "entrust": [11, 12], "servic": [11, 12], "ec": [11, 12], "api": [11, 12], "ecs_domain": 12, "valid": 12, "domain": 12, "index": [13, 15], "all": 13, "environ": 13, "variabl": 13, "get_certif": 14, "get": 14, "from": [14, 21, 28, 32, 34, 38, 42], "host": [14, 17], "port": 14, "descript": 15, "scenario": 15, "guid": 15, "plugin": 15, "filter": [15, 21, 28, 32, 37, 38, 42], "luks_devic": 16, "manag": 16, "encrypt": 16, "luk": 16, "devic": 16, "openssh_cert": 17, "gener": [17, 18, 23, 24, 25, 26, 30, 31, 34, 40, 41, 44], "openssh": [17, 18], "user": 17, "openssh_keypair": 18, "privat": [18, 27, 28, 29, 30, 31, 34], "public": [18, 32, 33, 34], "kei": [18, 27, 28, 29, 30, 31, 32, 33, 34], "openssl_certificate_info": 19, "openssl_certif": 20, "openssl_csr_info": [21, 22], "openssl": [21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 39, 40, 41], "csr": [21, 22, 23, 24], "input": [21, 28, 32, 37, 38, 42], "keyword": [21, 28, 38, 42], "provid": [22, 29, 33, 39], "openssl_csr": 23, "openssl_csr_pip": 24, "openssl_dhparam": 25, "diffi": 25, "hellman": 25, "openssl_pkcs12": 26, "pkc": 26, "12": 26, "archiv": 26, "openssl_privatekey_convert": 27, "convert": 27, "openssl_privatekey_info": [28, 29], "openssl_privatekei": 30, "openssl_privatekey_pip": 31, "without": 31, "disk": 31, "access": 31, "openssl_publickey_info": [32, 33], "pem": [32, 37, 38, 42], "format": [32, 38, 42], "openssl_publickei": 34, "its": 34, "openssl_signature_info": 35, "verifi": 35, "signatur": 35, "openssl_signatur": 36, "data": 36, "split_pem": 37, "split": 37, "file": 37, "content": 37, "multipl": 37, "object": 37, "x509_certificate_info": [38, 39], "x": [38, 39, 42], "509": [38, 39, 42], "x509_certif": 40, "check": [40, 41], "x509_certificate_pip": 41, "x509_crl_info": [42, 43], "crl": [42, 43, 44], "revoc": [43, 44], "list": [43, 44], "x509_crl": 44}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 57}, "alltitles": {"community.crypto.acme_account_facts": [[0, "community-crypto-acme-account-facts"]], "community.crypto.acme_account_info module \u2013 Retrieves information on ACME accounts": [[1, "community-crypto-acme-account-info-module-retrieves-information-on-acme-accounts"]], "Synopsis": [[1, "synopsis"], [2, "synopsis"], [3, "synopsis"], [4, "synopsis"], [5, "synopsis"], [6, "synopsis"], [7, "synopsis"], [8, "synopsis"], [11, "synopsis"], [12, "synopsis"], [14, "synopsis"], [16, "synopsis"], [17, "synopsis"], [18, "synopsis"], [21, "synopsis"], [22, "synopsis"], [23, "synopsis"], [24, "synopsis"], [25, "synopsis"], [26, "synopsis"], [27, "synopsis"], [28, "synopsis"], [29, "synopsis"], [30, "synopsis"], [31, "synopsis"], [32, "synopsis"], [33, "synopsis"], [34, "synopsis"], [35, "synopsis"], [36, "synopsis"], [37, "synopsis"], [38, "synopsis"], [39, "synopsis"], [40, "synopsis"], [41, "synopsis"], [42, "synopsis"], [43, "synopsis"], [44, "synopsis"]], "Requirements": [[1, "requirements"], [2, "requirements"], [3, "requirements"], [4, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [11, "requirements"], [12, "requirements"], [14, "requirements"], [16, "requirements"], [17, "requirements"], [18, "requirements"], [21, "requirements"], [22, "requirements"], [23, "requirements"], [24, "requirements"], [25, "requirements"], [26, "requirements"], [27, "requirements"], [28, "requirements"], [29, "requirements"], [30, "requirements"], [31, "requirements"], [33, "requirements"], [34, "requirements"], [35, "requirements"], [36, "requirements"], [38, "requirements"], [39, "requirements"], [40, "requirements"], [41, "requirements"], [42, "requirements"], [43, "requirements"], [44, "requirements"]], "Parameters": [[1, "parameters"], [2, "parameters"], [3, "parameters"], [4, "parameters"], [5, "parameters"], [6, "parameters"], [7, "parameters"], [11, "parameters"], [12, "parameters"], [14, "parameters"], [16, "parameters"], [17, "parameters"], [18, "parameters"], [22, "parameters"], [23, "parameters"], [24, "parameters"], [25, "parameters"], [26, "parameters"], [27, "parameters"], [29, "parameters"], [30, "parameters"], [31, "parameters"], [33, "parameters"], [34, "parameters"], [35, "parameters"], [36, "parameters"], [39, "parameters"], [40, "parameters"], [41, "parameters"], [43, "parameters"], [44, "parameters"]], "Attributes": [[1, "attributes"], [2, "attributes"], [3, "attributes"], [4, "attributes"], [5, "attributes"], [6, "attributes"], [7, "attributes"], [8, "attributes"], [11, "attributes"], [12, "attributes"], [14, "attributes"], [16, "attributes"], [17, "attributes"], [18, "attributes"], [22, "attributes"], [23, "attributes"], [24, "attributes"], [25, "attributes"], [26, "attributes"], [27, "attributes"], [29, "attributes"], [30, "attributes"], [31, "attributes"], [33, "attributes"], [34, "attributes"], [35, "attributes"], [36, "attributes"], [39, "attributes"], [40, "attributes"], [41, "attributes"], [43, "attributes"], [44, "attributes"]], "Notes": [[1, "notes"], [2, "notes"], [3, "notes"], [4, "notes"], [6, "notes"], [11, "notes"], [12, "notes"], [14, "notes"], [18, "notes"], [23, "notes"], [24, "notes"], [35, "notes"], [36, "notes"], [39, "notes"], [40, "notes"], [41, "notes"], [43, "notes"], [44, "notes"]], "See Also": [[1, "see-also"], [2, "see-also"], [3, "see-also"], [4, "see-also"], [5, "see-also"], [6, "see-also"], [11, "see-also"], [12, "see-also"], [21, "see-also"], [22, "see-also"], [23, "see-also"], [24, "see-also"], [25, "see-also"], [26, "see-also"], [27, "see-also"], [28, "see-also"], [29, "see-also"], [30, "see-also"], [31, "see-also"], [32, "see-also"], [33, "see-also"], [34, "see-also"], [35, "see-also"], [36, "see-also"], [38, "see-also"], [39, "see-also"], [40, "see-also"], [41, "see-also"], [42, "see-also"], [43, "see-also"]], "Examples": [[1, "examples"], [2, "examples"], [3, "examples"], [4, "examples"], [5, "examples"], [6, "examples"], [7, "examples"], [8, "examples"], [11, "examples"], [12, "examples"], [14, "examples"], [16, "examples"], [17, "examples"], [18, "examples"], [21, "examples"], [22, "examples"], [23, "examples"], [24, "examples"], [25, "examples"], [26, "examples"], [27, "examples"], [28, "examples"], [29, "examples"], [30, "examples"], [31, "examples"], [32, "examples"], [33, "examples"], [34, "examples"], [35, "examples"], [36, "examples"], [37, "examples"], [38, "examples"], [39, "examples"], [40, "examples"], [41, "examples"], [42, "examples"], [43, "examples"], [44, "examples"]], "Return Values": [[1, "return-values"], [2, "return-values"], [3, "return-values"], [5, "return-values"], [6, "return-values"], [7, "return-values"], [8, "return-values"], [11, "return-values"], [12, "return-values"], [14, "return-values"], [16, "return-values"], [17, "return-values"], [18, "return-values"], [22, "return-values"], [23, "return-values"], [24, "return-values"], [25, "return-values"], [26, "return-values"], [27, "return-values"], [29, "return-values"], [30, "return-values"], [31, "return-values"], [33, "return-values"], [34, "return-values"], [35, "return-values"], [36, "return-values"], [39, "return-values"], [40, "return-values"], [41, "return-values"], [43, "return-values"], [44, "return-values"]], "Authors": [[1, "authors"], [2, "authors"], [3, "authors"], [4, "authors"], [5, "authors"], [6, "authors"], [7, "authors"], [8, "authors"], [11, "authors"], [12, "authors"], [14, "authors"], [16, "authors"], [17, "authors"], [18, "authors"], [21, "authors"], [22, "authors"], [23, "authors"], [24, "authors"], [25, "authors"], [26, "authors"], [27, "authors"], [28, "authors"], [29, "authors"], [30, "authors"], [31, "authors"], [32, "authors"], [33, "authors"], [34, "authors"], [35, "authors"], [36, "authors"], [37, "authors"], [38, "authors"], [39, "authors"], [40, "authors"], [41, "authors"], [42, "authors"], [43, "authors"], [44, "authors"]], "Collection links": [[1, "collection-links"], [2, "collection-links"], [3, "collection-links"], [4, "collection-links"], [5, "collection-links"], [6, "collection-links"], [7, "collection-links"], [8, "collection-links"], [11, "collection-links"], [12, "collection-links"], [14, "collection-links"], [16, "collection-links"], [17, "collection-links"], [18, "collection-links"], [21, "collection-links"], [22, "collection-links"], [23, "collection-links"], [24, "collection-links"], [25, "collection-links"], [26, "collection-links"], [27, "collection-links"], [28, "collection-links"], [29, "collection-links"], [30, "collection-links"], [31, "collection-links"], [32, "collection-links"], [33, "collection-links"], [34, "collection-links"], [35, "collection-links"], [36, "collection-links"], [37, "collection-links"], [38, "collection-links"], [39, "collection-links"], [40, "collection-links"], [41, "collection-links"], [42, "collection-links"], [43, "collection-links"], [44, "collection-links"]], "community.crypto.acme_account module \u2013 Create, modify or delete ACME accounts": [[2, "community-crypto-acme-account-module-create-modify-or-delete-acme-accounts"]], "community.crypto.acme_certificate module \u2013 Create SSL/TLS certificates with the ACME protocol": [[3, "community-crypto-acme-certificate-module-create-ssl-tls-certificates-with-the-acme-protocol"]], "community.crypto.acme_certificate_revoke module \u2013 Revoke certificates with the ACME protocol": [[4, "community-crypto-acme-certificate-revoke-module-revoke-certificates-with-the-acme-protocol"]], "community.crypto.acme_challenge_cert_helper module \u2013 Prepare certificates required for ACME challenges such as tls-alpn-01": [[5, "community-crypto-acme-challenge-cert-helper-module-prepare-certificates-required-for-acme-challenges-such-as-tls-alpn-01"]], "community.crypto.acme_inspect module \u2013 Send direct requests to an ACME server": [[6, "community-crypto-acme-inspect-module-send-direct-requests-to-an-acme-server"]], "community.crypto.certificate_complete_chain module \u2013 Complete certificate chain given a set of untrusted and root certificates": [[7, "community-crypto-certificate-complete-chain-module-complete-certificate-chain-given-a-set-of-untrusted-and-root-certificates"]], "community.crypto.crypto_info module \u2013 Retrieve cryptographic capabilities": [[8, "community-crypto-crypto-info-module-retrieve-cryptographic-capabilities"]], "How to create a small CA": [[9, "how-to-create-a-small-ca"]], "Set up the CA": [[9, "set-up-the-ca"]], "Use the CA to sign a certificate": [[9, "use-the-ca-to-sign-a-certificate"]], "How to create self-signed certificates": [[10, "how-to-create-self-signed-certificates"]], "community.crypto.ecs_certificate module \u2013 Request SSL/TLS certificates with the Entrust Certificate Services (ECS) API": [[11, "community-crypto-ecs-certificate-module-request-ssl-tls-certificates-with-the-entrust-certificate-services-ecs-api"]], "community.crypto.ecs_domain module \u2013 Request validation of a domain with the Entrust Certificate Services (ECS) API": [[12, "community-crypto-ecs-domain-module-request-validation-of-a-domain-with-the-entrust-certificate-services-ecs-api"]], "Index of all Collection Environment Variables": [[13, "index-of-all-collection-environment-variables"]], "community.crypto.get_certificate module \u2013 Get a certificate from a host:port": [[14, "community-crypto-get-certificate-module-get-a-certificate-from-a-host-port"]], "Community.Crypto": [[15, "community-crypto"]], "Description": [[15, "description"]], "Communication": [[15, "communication"]], "Scenario Guides": [[15, "scenario-guides"]], "Plugin Index": [[15, "plugin-index"]], "Modules": [[15, "modules"]], "Filter Plugins": [[15, "filter-plugins"]], "community.crypto.luks_device module \u2013 Manage encrypted (LUKS) devices": [[16, "community-crypto-luks-device-module-manage-encrypted-luks-devices"]], "community.crypto.openssh_cert module \u2013 Generate OpenSSH host or user certificates.": [[17, "community-crypto-openssh-cert-module-generate-openssh-host-or-user-certificates"]], "community.crypto.openssh_keypair module \u2013 Generate OpenSSH private and public keys": [[18, "community-crypto-openssh-keypair-module-generate-openssh-private-and-public-keys"]], "community.crypto.openssl_certificate_info": [[19, "community-crypto-openssl-certificate-info"]], "community.crypto.openssl_certificate": [[20, "community-crypto-openssl-certificate"]], "community.crypto.openssl_csr_info filter \u2013 Retrieve information from OpenSSL Certificate Signing Requests (CSR)": [[21, "community-crypto-openssl-csr-info-filter-retrieve-information-from-openssl-certificate-signing-requests-csr"]], "Input": [[21, "input"], [28, "input"], [32, "input"], [37, "input"], [38, "input"], [42, "input"]], "Keyword parameters": [[21, "keyword-parameters"], [28, "keyword-parameters"], [38, "keyword-parameters"], [42, "keyword-parameters"]], "Return Value": [[21, "return-value"], [28, "return-value"], [32, "return-value"], [37, "return-value"], [38, "return-value"], [42, "return-value"]], "community.crypto.openssl_csr_info module \u2013 Provide information of OpenSSL Certificate Signing Requests (CSR)": [[22, "community-crypto-openssl-csr-info-module-provide-information-of-openssl-certificate-signing-requests-csr"]], "community.crypto.openssl_csr module \u2013 Generate OpenSSL Certificate Signing Request (CSR)": [[23, "community-crypto-openssl-csr-module-generate-openssl-certificate-signing-request-csr"]], "community.crypto.openssl_csr_pipe module \u2013 Generate OpenSSL Certificate Signing Request (CSR)": [[24, "community-crypto-openssl-csr-pipe-module-generate-openssl-certificate-signing-request-csr"]], "community.crypto.openssl_dhparam module \u2013 Generate OpenSSL Diffie-Hellman Parameters": [[25, "community-crypto-openssl-dhparam-module-generate-openssl-diffie-hellman-parameters"]], "community.crypto.openssl_pkcs12 module \u2013 Generate OpenSSL PKCS#12 archive": [[26, "community-crypto-openssl-pkcs12-module-generate-openssl-pkcs-12-archive"]], "community.crypto.openssl_privatekey_convert module \u2013 Convert OpenSSL private keys": [[27, "community-crypto-openssl-privatekey-convert-module-convert-openssl-private-keys"]], "community.crypto.openssl_privatekey_info filter \u2013 Retrieve information from OpenSSL private keys": [[28, "community-crypto-openssl-privatekey-info-filter-retrieve-information-from-openssl-private-keys"]], "community.crypto.openssl_privatekey_info module \u2013 Provide information for OpenSSL private keys": [[29, "community-crypto-openssl-privatekey-info-module-provide-information-for-openssl-private-keys"]], "community.crypto.openssl_privatekey module \u2013 Generate OpenSSL private keys": [[30, "community-crypto-openssl-privatekey-module-generate-openssl-private-keys"]], "community.crypto.openssl_privatekey_pipe module \u2013 Generate OpenSSL private keys without disk access": [[31, "community-crypto-openssl-privatekey-pipe-module-generate-openssl-private-keys-without-disk-access"]], "community.crypto.openssl_publickey_info filter \u2013 Retrieve information from OpenSSL public keys in PEM format": [[32, "community-crypto-openssl-publickey-info-filter-retrieve-information-from-openssl-public-keys-in-pem-format"]], "community.crypto.openssl_publickey_info module \u2013 Provide information for OpenSSL public keys": [[33, "community-crypto-openssl-publickey-info-module-provide-information-for-openssl-public-keys"]], "community.crypto.openssl_publickey module \u2013 Generate an OpenSSL public key from its private key.": [[34, "community-crypto-openssl-publickey-module-generate-an-openssl-public-key-from-its-private-key"]], "community.crypto.openssl_signature_info module \u2013 Verify signatures with openssl": [[35, "community-crypto-openssl-signature-info-module-verify-signatures-with-openssl"]], "community.crypto.openssl_signature module \u2013 Sign data with openssl": [[36, "community-crypto-openssl-signature-module-sign-data-with-openssl"]], "community.crypto.split_pem filter \u2013 Split PEM file contents into multiple objects": [[37, "community-crypto-split-pem-filter-split-pem-file-contents-into-multiple-objects"]], "community.crypto.x509_certificate_info filter \u2013 Retrieve information from X.509 certificates in PEM format": [[38, "community-crypto-x509-certificate-info-filter-retrieve-information-from-x-509-certificates-in-pem-format"]], "community.crypto.x509_certificate_info module \u2013 Provide information of OpenSSL X.509 certificates": [[39, "community-crypto-x509-certificate-info-module-provide-information-of-openssl-x-509-certificates"]], "community.crypto.x509_certificate module \u2013 Generate and/or check OpenSSL certificates": [[40, "community-crypto-x509-certificate-module-generate-and-or-check-openssl-certificates"]], "community.crypto.x509_certificate_pipe module \u2013 Generate and/or check OpenSSL certificates": [[41, "community-crypto-x509-certificate-pipe-module-generate-and-or-check-openssl-certificates"]], "community.crypto.x509_crl_info filter \u2013 Retrieve information from X.509 CRLs in PEM format": [[42, "community-crypto-x509-crl-info-filter-retrieve-information-from-x-509-crls-in-pem-format"]], "community.crypto.x509_crl_info module \u2013 Retrieve information on Certificate Revocation Lists (CRLs)": [[43, "community-crypto-x509-crl-info-module-retrieve-information-on-certificate-revocation-lists-crls"]], "community.crypto.x509_crl module \u2013 Generate Certificate Revocation Lists (CRLs)": [[44, "community-crypto-x509-crl-module-generate-certificate-revocation-lists-crls"]]}, "indexentries": {}}) \ No newline at end of file diff --git a/branch/main/x509_certificate_module.html b/branch/main/x509_certificate_module.html index 34eeab8e..90f0fea8 100644 --- a/branch/main/x509_certificate_module.html +++ b/branch/main/x509_certificate_module.html @@ -445,8 +445,8 @@ see

any

The permissions the resulting filesystem object should have.

-

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must either add a leading zero so that Ansible’s YAML parser knows it is an octal number (like 0644 or 01777) or quote it (like '644' or '1777') so Ansible receives a string and can do its own conversion from string into number.

-

Giving Ansible a number without following one of these rules will end up with a decimal number which will have unexpected results.

+

For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must give Ansible enough information to parse them correctly. For consistent results, quote octal numbers (for example, '644' or '1777') so Ansible receives a string and can do its own conversion from string into number. Adding a leading zero (for example, 0755) works sometimes, but can fail in loops and some other circumstances.

+

Giving Ansible a number without following either of these rules will end up with a decimal number which will have unexpected results.

As of Ansible 1.8, the mode may be specified as a symbolic mode (for example, u+rwx or u=rw,g=r,o=r).

If mode is not specified and the destination filesystem object does not exist, the default umask on the system will be used when setting the mode for the newly created filesystem object.

If mode is not specified and the destination filesystem object does exist, the mode of the existing filesystem object will be used.