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