├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── markdownlint.yml ├── .gitignore ├── .markdownlint-cli2.jsonc ├── .stylelintignore ├── .stylelintrc.json ├── LICENSE ├── README.md ├── archetypes ├── blog.md ├── default.md ├── docs.md └── docs │ ├── _index.md │ └── lorem │ ├── _index.md │ └── ipsum │ └── index.md ├── assets ├── fonts │ └── .gitkeep ├── images │ └── default-image.png ├── js │ ├── alert-init.js │ ├── alert.js │ ├── app.js │ ├── bootstrap.js │ ├── clipboard.js │ ├── darkmode-init.js │ ├── darkmode.js │ ├── highlight.js │ ├── index.js │ ├── instant.page.js │ ├── katex.js │ ├── lazysizes.js │ ├── mermaid.js │ ├── scroll-lock.js │ ├── to-top.js │ └── vendor │ │ └── .gitkeep └── scss │ ├── app.scss │ ├── common │ ├── _dark.scss │ ├── _fonts.scss │ ├── _global.scss │ └── _variables.scss │ ├── components │ ├── _alerts.scss │ ├── _buttons.scss │ ├── _code.scss │ ├── _comments.scss │ ├── _details.scss │ ├── _forms.scss │ ├── _images.scss │ ├── _mermaid.scss │ ├── _search.scss │ ├── _syntax.scss │ └── _tables.scss │ ├── layouts │ ├── _footer.scss │ ├── _header.scss │ ├── _pages.scss │ ├── _posts.scss │ └── _sidebar.scss │ └── vendor │ └── .gitkeep ├── babel.config.js ├── config ├── _default │ ├── config.toml │ ├── languages.toml │ ├── markup.toml │ ├── menus │ │ └── menus.en.toml │ └── params.toml ├── next │ └── config.toml ├── postcss.config.js └── production │ └── config.toml ├── content └── en │ ├── about │ ├── _index.html │ ├── api-stability.md │ ├── bundle.md │ ├── contributing.md │ ├── doc_locations.md │ ├── faq.md │ ├── overview.md │ ├── research.md │ ├── security.md │ ├── support.md │ ├── the-importance-of-verification.md │ ├── threat-model.md │ └── tooling.md │ ├── certificate_authority │ ├── _index.html │ ├── cert-transparency-log-info.md │ ├── cert_specification.md │ ├── certificate-issuing-overview.md │ ├── hsm-support.md │ ├── oidc-in-fulcio.md │ ├── overview.md │ └── release-log.md │ ├── cosign │ ├── _index.html │ ├── key_management │ │ ├── _index.html │ │ ├── hardware-based-tokens.md │ │ ├── import-keypair.md │ │ ├── overview.md │ │ └── signing_with_self-managed_keys.md │ ├── signing │ │ ├── _index.html │ │ ├── git_support.md │ │ ├── gitsign.md │ │ ├── other_types.md │ │ ├── overview.md │ │ ├── pkcs11.md │ │ ├── signing_with_blobs.md │ │ └── signing_with_containers.md │ ├── system_config │ │ ├── _index.html │ │ ├── custom_components.md │ │ ├── installation.md │ │ ├── integration.md │ │ ├── public_deployment.md │ │ ├── registry_support.md │ │ └── specifications.md │ └── verifying │ │ ├── _index.html │ │ ├── attestation.md │ │ ├── inspecting.md │ │ ├── timestamps.md │ │ └── verify.md │ ├── language_clients │ ├── _index.html │ ├── go.md │ ├── java.md │ ├── javascript.md │ ├── language_client_overview.md │ ├── python.md │ ├── ruby.md │ └── rust.md │ ├── logging │ ├── CLI.md │ ├── _index.html │ ├── event_stream.md │ ├── installation.md │ ├── overview.md │ ├── pluggable-types.md │ ├── sharding.md │ ├── sign-upload.md │ └── verify-release.md │ ├── migrate.py │ ├── policy-controller │ ├── _index.html │ ├── installation.md │ ├── overview.md │ └── sample-policies.md │ └── quickstart │ ├── _index.html │ ├── quickstart-ci.md │ ├── quickstart-cosign.md │ └── verification-cheat-sheet.md ├── data └── docs-versions.yml ├── functions └── hi-from-lambda.js ├── i18n └── en.yaml ├── images ├── doks.png ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ └── render-heading.html │ ├── baseof.html │ ├── index.js │ ├── index.json │ ├── list.html │ ├── section.sitemap.xml │ ├── single.html │ ├── terms.html │ └── versions.html ├── blog │ └── single.html ├── docs │ ├── list.html │ └── single.html ├── index-backup.html ├── index.headers ├── index.html ├── partials │ ├── content │ │ ├── card-image.html │ │ ├── figure.html │ │ └── image.html │ ├── footer │ │ ├── footer.html │ │ └── script-footer.html │ ├── head │ │ ├── custom-head.html │ │ ├── favicons.html │ │ ├── head.html │ │ ├── opengraph.html │ │ ├── resource-hints.html │ │ ├── script-header.html │ │ ├── seo.html │ │ ├── structured-data.html │ │ ├── stylesheet.html │ │ └── twitter_cards.html │ ├── header │ │ ├── alert.html │ │ └── header.html │ ├── main │ │ ├── blog-meta.html │ │ ├── breadcrumb.html │ │ ├── date.html │ │ ├── docs-navigation.html │ │ ├── edit-page.html │ │ └── last-modified.html │ └── sidebar │ │ ├── auto-collapsible-menu.html │ │ ├── auto-default-menu.html │ │ ├── docs-menu.html │ │ ├── docs-toc.html │ │ ├── manual-collapsible-menu.html │ │ ├── manual-default-menu.html │ │ └── menu-item.html ├── robots.txt ├── rss.xml ├── shortcodes │ ├── alert.html │ ├── details.html │ ├── email.html │ ├── mermaid.html │ └── video.html └── sitemap.xml ├── netlify.toml ├── package.json ├── static ├── Sigstore-logo_horizontal-white.svg ├── _redirects ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── cosign.gif ├── cosign_identity_login.png ├── css │ └── vendor │ │ └── .gitkeep ├── default_images │ └── logo-doks.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── favicon.png ├── fonts │ ├── KaTeX_AMS-Regular.ttf │ ├── KaTeX_AMS-Regular.woff │ ├── KaTeX_AMS-Regular.woff2 │ ├── KaTeX_Caligraphic-Bold.ttf │ ├── KaTeX_Caligraphic-Bold.woff │ ├── KaTeX_Caligraphic-Bold.woff2 │ ├── KaTeX_Caligraphic-Regular.ttf │ ├── KaTeX_Caligraphic-Regular.woff │ ├── KaTeX_Caligraphic-Regular.woff2 │ ├── KaTeX_Fraktur-Bold.ttf │ ├── KaTeX_Fraktur-Bold.woff │ ├── KaTeX_Fraktur-Bold.woff2 │ ├── KaTeX_Fraktur-Regular.ttf │ ├── KaTeX_Fraktur-Regular.woff │ ├── KaTeX_Fraktur-Regular.woff2 │ ├── KaTeX_Main-Bold.ttf │ ├── KaTeX_Main-Bold.woff │ ├── KaTeX_Main-Bold.woff2 │ ├── KaTeX_Main-BoldItalic.ttf │ ├── KaTeX_Main-BoldItalic.woff │ ├── KaTeX_Main-BoldItalic.woff2 │ ├── KaTeX_Main-Italic.ttf │ ├── KaTeX_Main-Italic.woff │ ├── KaTeX_Main-Italic.woff2 │ ├── KaTeX_Main-Regular.ttf │ ├── KaTeX_Main-Regular.woff │ ├── KaTeX_Main-Regular.woff2 │ ├── KaTeX_Math-BoldItalic.ttf │ ├── KaTeX_Math-BoldItalic.woff │ ├── KaTeX_Math-BoldItalic.woff2 │ ├── KaTeX_Math-Italic.ttf │ ├── KaTeX_Math-Italic.woff │ ├── KaTeX_Math-Italic.woff2 │ ├── KaTeX_SansSerif-Bold.ttf │ ├── KaTeX_SansSerif-Bold.woff │ ├── KaTeX_SansSerif-Bold.woff2 │ ├── KaTeX_SansSerif-Italic.ttf │ ├── KaTeX_SansSerif-Italic.woff │ ├── KaTeX_SansSerif-Italic.woff2 │ ├── KaTeX_SansSerif-Regular.ttf │ ├── KaTeX_SansSerif-Regular.woff │ ├── KaTeX_SansSerif-Regular.woff2 │ ├── KaTeX_Script-Regular.ttf │ ├── KaTeX_Script-Regular.woff │ ├── KaTeX_Script-Regular.woff2 │ ├── KaTeX_Size1-Regular.ttf │ ├── KaTeX_Size1-Regular.woff │ ├── KaTeX_Size1-Regular.woff2 │ ├── KaTeX_Size2-Regular.ttf │ ├── KaTeX_Size2-Regular.woff │ ├── KaTeX_Size2-Regular.woff2 │ ├── KaTeX_Size3-Regular.ttf │ ├── KaTeX_Size3-Regular.woff │ ├── KaTeX_Size3-Regular.woff2 │ ├── KaTeX_Size4-Regular.ttf │ ├── KaTeX_Size4-Regular.woff │ ├── KaTeX_Size4-Regular.woff2 │ ├── KaTeX_Typewriter-Regular.ttf │ ├── KaTeX_Typewriter-Regular.woff │ ├── KaTeX_Typewriter-Regular.woff2 │ └── vendor │ │ ├── .gitkeep │ │ └── jost │ │ ├── jost-v4-latin-500.woff │ │ ├── jost-v4-latin-500.woff2 │ │ ├── jost-v4-latin-500italic.woff │ │ ├── jost-v4-latin-500italic.woff2 │ │ ├── jost-v4-latin-700.woff │ │ ├── jost-v4-latin-700.woff2 │ │ ├── jost-v4-latin-700italic.woff │ │ ├── jost-v4-latin-700italic.woff2 │ │ ├── jost-v4-latin-italic.woff │ │ ├── jost-v4-latin-italic.woff2 │ │ ├── jost-v4-latin-regular.woff │ │ └── jost-v4-latin-regular.woff2 ├── fulcio-1-certificate-request-input.png ├── fulcio-2-authentication.png ├── fulcio-3-verify-the-challenge.png ├── fulcio-4-construct-certificate.png ├── fulcio-5-signing-certificate.png ├── fulcio-6-sign-again.png ├── fulcio-6-transparency-log-inclusion.png ├── fulcio-7-return-to-client.png ├── icon.png ├── js │ └── vendor │ │ └── .gitkeep ├── mstile-150x150.png ├── preview-dark.png ├── preview.png ├── safari-pinned-tab.svg ├── sigstore-logo.png ├── sigstore-logo_horizontal-color.svg ├── sigstore-threat-model-signing.svg ├── sigstore_cosign-horizontal-color.svg ├── sigstore_fulcio-horizontal-color.svg ├── sigstore_gitsign-horizontal-color.svg ├── sigstore_logo_horizontal_color.svg ├── sigstore_overview_v1.jpg ├── sigstore_overview_v2.jpg ├── sigstore_rekor-horizontal-color.svg ├── site.webmanifest ├── sw.js ├── vendor │ └── .gitkeep └── videos │ ├── flower.mp4 │ └── flower.webm └── theme.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/.github/workflows/markdownlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public 3 | resources 4 | .netlify 5 | .hugo_build.lock -------------------------------------------------------------------------------- /.markdownlint-cli2.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/.markdownlint-cli2.jsonc -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/archetypes/blog.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /archetypes/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/archetypes/docs.md -------------------------------------------------------------------------------- /archetypes/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/archetypes/docs/_index.md -------------------------------------------------------------------------------- /archetypes/docs/lorem/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/archetypes/docs/lorem/_index.md -------------------------------------------------------------------------------- /archetypes/docs/lorem/ipsum/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/archetypes/docs/lorem/ipsum/index.md -------------------------------------------------------------------------------- /assets/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/default-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/images/default-image.png -------------------------------------------------------------------------------- /assets/js/alert-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/js/alert-init.js -------------------------------------------------------------------------------- /assets/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/js/alert.js -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/js/bootstrap.js -------------------------------------------------------------------------------- /assets/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/js/clipboard.js -------------------------------------------------------------------------------- /assets/js/darkmode-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/js/darkmode-init.js -------------------------------------------------------------------------------- /assets/js/darkmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/js/darkmode.js -------------------------------------------------------------------------------- /assets/js/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/js/highlight.js -------------------------------------------------------------------------------- /assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/js/index.js -------------------------------------------------------------------------------- /assets/js/instant.page.js: -------------------------------------------------------------------------------- 1 | import 'instant.page'; 2 | -------------------------------------------------------------------------------- /assets/js/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/js/katex.js -------------------------------------------------------------------------------- /assets/js/lazysizes.js: -------------------------------------------------------------------------------- 1 | import 'lazysizes'; 2 | -------------------------------------------------------------------------------- /assets/js/mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/js/mermaid.js -------------------------------------------------------------------------------- /assets/js/scroll-lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/js/scroll-lock.js -------------------------------------------------------------------------------- /assets/js/to-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/js/to-top.js -------------------------------------------------------------------------------- /assets/js/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/app.scss -------------------------------------------------------------------------------- /assets/scss/common/_dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/common/_dark.scss -------------------------------------------------------------------------------- /assets/scss/common/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/common/_fonts.scss -------------------------------------------------------------------------------- /assets/scss/common/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/common/_global.scss -------------------------------------------------------------------------------- /assets/scss/common/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/common/_variables.scss -------------------------------------------------------------------------------- /assets/scss/components/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/components/_alerts.scss -------------------------------------------------------------------------------- /assets/scss/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/components/_buttons.scss -------------------------------------------------------------------------------- /assets/scss/components/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/components/_code.scss -------------------------------------------------------------------------------- /assets/scss/components/_comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/components/_comments.scss -------------------------------------------------------------------------------- /assets/scss/components/_details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/components/_details.scss -------------------------------------------------------------------------------- /assets/scss/components/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/components/_forms.scss -------------------------------------------------------------------------------- /assets/scss/components/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/components/_images.scss -------------------------------------------------------------------------------- /assets/scss/components/_mermaid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/components/_mermaid.scss -------------------------------------------------------------------------------- /assets/scss/components/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/components/_search.scss -------------------------------------------------------------------------------- /assets/scss/components/_syntax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/components/_syntax.scss -------------------------------------------------------------------------------- /assets/scss/components/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/components/_tables.scss -------------------------------------------------------------------------------- /assets/scss/layouts/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/layouts/_footer.scss -------------------------------------------------------------------------------- /assets/scss/layouts/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/layouts/_header.scss -------------------------------------------------------------------------------- /assets/scss/layouts/_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/layouts/_pages.scss -------------------------------------------------------------------------------- /assets/scss/layouts/_posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/layouts/_posts.scss -------------------------------------------------------------------------------- /assets/scss/layouts/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/assets/scss/layouts/_sidebar.scss -------------------------------------------------------------------------------- /assets/scss/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/babel.config.js -------------------------------------------------------------------------------- /config/_default/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/config/_default/config.toml -------------------------------------------------------------------------------- /config/_default/languages.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/config/_default/languages.toml -------------------------------------------------------------------------------- /config/_default/markup.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/config/_default/markup.toml -------------------------------------------------------------------------------- /config/_default/menus/menus.en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/config/_default/menus/menus.en.toml -------------------------------------------------------------------------------- /config/_default/params.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/config/_default/params.toml -------------------------------------------------------------------------------- /config/next/config.toml: -------------------------------------------------------------------------------- 1 | canonifyURLs = false 2 | -------------------------------------------------------------------------------- /config/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/config/postcss.config.js -------------------------------------------------------------------------------- /config/production/config.toml: -------------------------------------------------------------------------------- 1 | canonifyURLs = false 2 | -------------------------------------------------------------------------------- /content/en/about/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/about/_index.html -------------------------------------------------------------------------------- /content/en/about/api-stability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/about/api-stability.md -------------------------------------------------------------------------------- /content/en/about/bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/about/bundle.md -------------------------------------------------------------------------------- /content/en/about/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/about/contributing.md -------------------------------------------------------------------------------- /content/en/about/doc_locations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/about/doc_locations.md -------------------------------------------------------------------------------- /content/en/about/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/about/faq.md -------------------------------------------------------------------------------- /content/en/about/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/about/overview.md -------------------------------------------------------------------------------- /content/en/about/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/about/research.md -------------------------------------------------------------------------------- /content/en/about/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/about/security.md -------------------------------------------------------------------------------- /content/en/about/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/about/support.md -------------------------------------------------------------------------------- /content/en/about/the-importance-of-verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/about/the-importance-of-verification.md -------------------------------------------------------------------------------- /content/en/about/threat-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/about/threat-model.md -------------------------------------------------------------------------------- /content/en/about/tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/about/tooling.md -------------------------------------------------------------------------------- /content/en/certificate_authority/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/certificate_authority/_index.html -------------------------------------------------------------------------------- /content/en/certificate_authority/cert-transparency-log-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/certificate_authority/cert-transparency-log-info.md -------------------------------------------------------------------------------- /content/en/certificate_authority/cert_specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/certificate_authority/cert_specification.md -------------------------------------------------------------------------------- /content/en/certificate_authority/certificate-issuing-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/certificate_authority/certificate-issuing-overview.md -------------------------------------------------------------------------------- /content/en/certificate_authority/hsm-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/certificate_authority/hsm-support.md -------------------------------------------------------------------------------- /content/en/certificate_authority/oidc-in-fulcio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/certificate_authority/oidc-in-fulcio.md -------------------------------------------------------------------------------- /content/en/certificate_authority/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/certificate_authority/overview.md -------------------------------------------------------------------------------- /content/en/certificate_authority/release-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/certificate_authority/release-log.md -------------------------------------------------------------------------------- /content/en/cosign/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/_index.html -------------------------------------------------------------------------------- /content/en/cosign/key_management/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/key_management/_index.html -------------------------------------------------------------------------------- /content/en/cosign/key_management/hardware-based-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/key_management/hardware-based-tokens.md -------------------------------------------------------------------------------- /content/en/cosign/key_management/import-keypair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/key_management/import-keypair.md -------------------------------------------------------------------------------- /content/en/cosign/key_management/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/key_management/overview.md -------------------------------------------------------------------------------- /content/en/cosign/key_management/signing_with_self-managed_keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/key_management/signing_with_self-managed_keys.md -------------------------------------------------------------------------------- /content/en/cosign/signing/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/signing/_index.html -------------------------------------------------------------------------------- /content/en/cosign/signing/git_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/signing/git_support.md -------------------------------------------------------------------------------- /content/en/cosign/signing/gitsign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/signing/gitsign.md -------------------------------------------------------------------------------- /content/en/cosign/signing/other_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/signing/other_types.md -------------------------------------------------------------------------------- /content/en/cosign/signing/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/signing/overview.md -------------------------------------------------------------------------------- /content/en/cosign/signing/pkcs11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/signing/pkcs11.md -------------------------------------------------------------------------------- /content/en/cosign/signing/signing_with_blobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/signing/signing_with_blobs.md -------------------------------------------------------------------------------- /content/en/cosign/signing/signing_with_containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/signing/signing_with_containers.md -------------------------------------------------------------------------------- /content/en/cosign/system_config/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/system_config/_index.html -------------------------------------------------------------------------------- /content/en/cosign/system_config/custom_components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/system_config/custom_components.md -------------------------------------------------------------------------------- /content/en/cosign/system_config/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/system_config/installation.md -------------------------------------------------------------------------------- /content/en/cosign/system_config/integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/system_config/integration.md -------------------------------------------------------------------------------- /content/en/cosign/system_config/public_deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/system_config/public_deployment.md -------------------------------------------------------------------------------- /content/en/cosign/system_config/registry_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/system_config/registry_support.md -------------------------------------------------------------------------------- /content/en/cosign/system_config/specifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/system_config/specifications.md -------------------------------------------------------------------------------- /content/en/cosign/verifying/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/verifying/_index.html -------------------------------------------------------------------------------- /content/en/cosign/verifying/attestation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/verifying/attestation.md -------------------------------------------------------------------------------- /content/en/cosign/verifying/inspecting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/verifying/inspecting.md -------------------------------------------------------------------------------- /content/en/cosign/verifying/timestamps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/verifying/timestamps.md -------------------------------------------------------------------------------- /content/en/cosign/verifying/verify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/cosign/verifying/verify.md -------------------------------------------------------------------------------- /content/en/language_clients/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/language_clients/_index.html -------------------------------------------------------------------------------- /content/en/language_clients/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/language_clients/go.md -------------------------------------------------------------------------------- /content/en/language_clients/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/language_clients/java.md -------------------------------------------------------------------------------- /content/en/language_clients/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/language_clients/javascript.md -------------------------------------------------------------------------------- /content/en/language_clients/language_client_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/language_clients/language_client_overview.md -------------------------------------------------------------------------------- /content/en/language_clients/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/language_clients/python.md -------------------------------------------------------------------------------- /content/en/language_clients/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/language_clients/ruby.md -------------------------------------------------------------------------------- /content/en/language_clients/rust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/language_clients/rust.md -------------------------------------------------------------------------------- /content/en/logging/CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/logging/CLI.md -------------------------------------------------------------------------------- /content/en/logging/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/logging/_index.html -------------------------------------------------------------------------------- /content/en/logging/event_stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/logging/event_stream.md -------------------------------------------------------------------------------- /content/en/logging/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/logging/installation.md -------------------------------------------------------------------------------- /content/en/logging/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/logging/overview.md -------------------------------------------------------------------------------- /content/en/logging/pluggable-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/logging/pluggable-types.md -------------------------------------------------------------------------------- /content/en/logging/sharding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/logging/sharding.md -------------------------------------------------------------------------------- /content/en/logging/sign-upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/logging/sign-upload.md -------------------------------------------------------------------------------- /content/en/logging/verify-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/logging/verify-release.md -------------------------------------------------------------------------------- /content/en/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/migrate.py -------------------------------------------------------------------------------- /content/en/policy-controller/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/policy-controller/_index.html -------------------------------------------------------------------------------- /content/en/policy-controller/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/policy-controller/installation.md -------------------------------------------------------------------------------- /content/en/policy-controller/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/policy-controller/overview.md -------------------------------------------------------------------------------- /content/en/policy-controller/sample-policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/policy-controller/sample-policies.md -------------------------------------------------------------------------------- /content/en/quickstart/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/quickstart/_index.html -------------------------------------------------------------------------------- /content/en/quickstart/quickstart-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/quickstart/quickstart-ci.md -------------------------------------------------------------------------------- /content/en/quickstart/quickstart-cosign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/quickstart/quickstart-cosign.md -------------------------------------------------------------------------------- /content/en/quickstart/verification-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/content/en/quickstart/verification-cheat-sheet.md -------------------------------------------------------------------------------- /data/docs-versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/data/docs-versions.yml -------------------------------------------------------------------------------- /functions/hi-from-lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/functions/hi-from-lambda.js -------------------------------------------------------------------------------- /i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/i18n/en.yaml -------------------------------------------------------------------------------- /images/doks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/images/doks.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/_default/_markup/render-heading.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/_default/index.js -------------------------------------------------------------------------------- /layouts/_default/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/_default/index.json -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/section.sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/_default/section.sitemap.xml -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/_default/terms.html -------------------------------------------------------------------------------- /layouts/_default/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/_default/versions.html -------------------------------------------------------------------------------- /layouts/blog/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/blog/single.html -------------------------------------------------------------------------------- /layouts/docs/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/docs/list.html -------------------------------------------------------------------------------- /layouts/docs/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/docs/single.html -------------------------------------------------------------------------------- /layouts/index-backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/index-backup.html -------------------------------------------------------------------------------- /layouts/index.headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/index.headers -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/content/card-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/content/card-image.html -------------------------------------------------------------------------------- /layouts/partials/content/figure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/content/figure.html -------------------------------------------------------------------------------- /layouts/partials/content/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/content/image.html -------------------------------------------------------------------------------- /layouts/partials/footer/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/footer/footer.html -------------------------------------------------------------------------------- /layouts/partials/footer/script-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/footer/script-footer.html -------------------------------------------------------------------------------- /layouts/partials/head/custom-head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /layouts/partials/head/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/head/favicons.html -------------------------------------------------------------------------------- /layouts/partials/head/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/head/head.html -------------------------------------------------------------------------------- /layouts/partials/head/opengraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/head/opengraph.html -------------------------------------------------------------------------------- /layouts/partials/head/resource-hints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/head/resource-hints.html -------------------------------------------------------------------------------- /layouts/partials/head/script-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/head/script-header.html -------------------------------------------------------------------------------- /layouts/partials/head/seo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/head/seo.html -------------------------------------------------------------------------------- /layouts/partials/head/structured-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/head/structured-data.html -------------------------------------------------------------------------------- /layouts/partials/head/stylesheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/head/stylesheet.html -------------------------------------------------------------------------------- /layouts/partials/head/twitter_cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/head/twitter_cards.html -------------------------------------------------------------------------------- /layouts/partials/header/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/header/alert.html -------------------------------------------------------------------------------- /layouts/partials/header/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/header/header.html -------------------------------------------------------------------------------- /layouts/partials/main/blog-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/main/blog-meta.html -------------------------------------------------------------------------------- /layouts/partials/main/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/main/breadcrumb.html -------------------------------------------------------------------------------- /layouts/partials/main/date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/main/date.html -------------------------------------------------------------------------------- /layouts/partials/main/docs-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/main/docs-navigation.html -------------------------------------------------------------------------------- /layouts/partials/main/edit-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/main/edit-page.html -------------------------------------------------------------------------------- /layouts/partials/main/last-modified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/main/last-modified.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/auto-collapsible-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/sidebar/auto-collapsible-menu.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/auto-default-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/sidebar/auto-default-menu.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/docs-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/sidebar/docs-menu.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/docs-toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/sidebar/docs-toc.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/manual-collapsible-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/sidebar/manual-collapsible-menu.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/manual-default-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/sidebar/manual-default-menu.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/menu-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/partials/sidebar/menu-item.html -------------------------------------------------------------------------------- /layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/robots.txt -------------------------------------------------------------------------------- /layouts/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/rss.xml -------------------------------------------------------------------------------- /layouts/shortcodes/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/shortcodes/alert.html -------------------------------------------------------------------------------- /layouts/shortcodes/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/shortcodes/details.html -------------------------------------------------------------------------------- /layouts/shortcodes/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/shortcodes/email.html -------------------------------------------------------------------------------- /layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/shortcodes/mermaid.html -------------------------------------------------------------------------------- /layouts/shortcodes/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/shortcodes/video.html -------------------------------------------------------------------------------- /layouts/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/layouts/sitemap.xml -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/package.json -------------------------------------------------------------------------------- /static/Sigstore-logo_horizontal-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/Sigstore-logo_horizontal-white.svg -------------------------------------------------------------------------------- /static/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/_redirects -------------------------------------------------------------------------------- /static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/browserconfig.xml -------------------------------------------------------------------------------- /static/cosign.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/cosign.gif -------------------------------------------------------------------------------- /static/cosign_identity_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/cosign_identity_login.png -------------------------------------------------------------------------------- /static/css/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/default_images/logo-doks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/default_images/logo-doks.png -------------------------------------------------------------------------------- /static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/fonts/vendor/jost/jost-v4-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/vendor/jost/jost-v4-latin-500.woff -------------------------------------------------------------------------------- /static/fonts/vendor/jost/jost-v4-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/vendor/jost/jost-v4-latin-500.woff2 -------------------------------------------------------------------------------- /static/fonts/vendor/jost/jost-v4-latin-500italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/vendor/jost/jost-v4-latin-500italic.woff -------------------------------------------------------------------------------- /static/fonts/vendor/jost/jost-v4-latin-500italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/vendor/jost/jost-v4-latin-500italic.woff2 -------------------------------------------------------------------------------- /static/fonts/vendor/jost/jost-v4-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/vendor/jost/jost-v4-latin-700.woff -------------------------------------------------------------------------------- /static/fonts/vendor/jost/jost-v4-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/vendor/jost/jost-v4-latin-700.woff2 -------------------------------------------------------------------------------- /static/fonts/vendor/jost/jost-v4-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/vendor/jost/jost-v4-latin-700italic.woff -------------------------------------------------------------------------------- /static/fonts/vendor/jost/jost-v4-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/vendor/jost/jost-v4-latin-700italic.woff2 -------------------------------------------------------------------------------- /static/fonts/vendor/jost/jost-v4-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/vendor/jost/jost-v4-latin-italic.woff -------------------------------------------------------------------------------- /static/fonts/vendor/jost/jost-v4-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/vendor/jost/jost-v4-latin-italic.woff2 -------------------------------------------------------------------------------- /static/fonts/vendor/jost/jost-v4-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/vendor/jost/jost-v4-latin-regular.woff -------------------------------------------------------------------------------- /static/fonts/vendor/jost/jost-v4-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fonts/vendor/jost/jost-v4-latin-regular.woff2 -------------------------------------------------------------------------------- /static/fulcio-1-certificate-request-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fulcio-1-certificate-request-input.png -------------------------------------------------------------------------------- /static/fulcio-2-authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fulcio-2-authentication.png -------------------------------------------------------------------------------- /static/fulcio-3-verify-the-challenge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fulcio-3-verify-the-challenge.png -------------------------------------------------------------------------------- /static/fulcio-4-construct-certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fulcio-4-construct-certificate.png -------------------------------------------------------------------------------- /static/fulcio-5-signing-certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fulcio-5-signing-certificate.png -------------------------------------------------------------------------------- /static/fulcio-6-sign-again.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fulcio-6-sign-again.png -------------------------------------------------------------------------------- /static/fulcio-6-transparency-log-inclusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fulcio-6-transparency-log-inclusion.png -------------------------------------------------------------------------------- /static/fulcio-7-return-to-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/fulcio-7-return-to-client.png -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/js/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/mstile-150x150.png -------------------------------------------------------------------------------- /static/preview-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/preview-dark.png -------------------------------------------------------------------------------- /static/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/preview.png -------------------------------------------------------------------------------- /static/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/safari-pinned-tab.svg -------------------------------------------------------------------------------- /static/sigstore-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/sigstore-logo.png -------------------------------------------------------------------------------- /static/sigstore-logo_horizontal-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/sigstore-logo_horizontal-color.svg -------------------------------------------------------------------------------- /static/sigstore-threat-model-signing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/sigstore-threat-model-signing.svg -------------------------------------------------------------------------------- /static/sigstore_cosign-horizontal-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/sigstore_cosign-horizontal-color.svg -------------------------------------------------------------------------------- /static/sigstore_fulcio-horizontal-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/sigstore_fulcio-horizontal-color.svg -------------------------------------------------------------------------------- /static/sigstore_gitsign-horizontal-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/sigstore_gitsign-horizontal-color.svg -------------------------------------------------------------------------------- /static/sigstore_logo_horizontal_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/sigstore_logo_horizontal_color.svg -------------------------------------------------------------------------------- /static/sigstore_overview_v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/sigstore_overview_v1.jpg -------------------------------------------------------------------------------- /static/sigstore_overview_v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/sigstore_overview_v2.jpg -------------------------------------------------------------------------------- /static/sigstore_rekor-horizontal-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/sigstore_rekor-horizontal-color.svg -------------------------------------------------------------------------------- /static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/site.webmanifest -------------------------------------------------------------------------------- /static/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/sw.js -------------------------------------------------------------------------------- /static/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/videos/flower.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/videos/flower.mp4 -------------------------------------------------------------------------------- /static/videos/flower.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/static/videos/flower.webm -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/docs/HEAD/theme.toml --------------------------------------------------------------------------------