├── .github ├── dependabot.yml └── workflows │ ├── add-remove-new-fulcio.yaml │ ├── cloud-sql-proxy-update.yml │ ├── codeql-analysis.yml │ ├── create-tink-keyset-test.yml │ ├── fulcio-rekor-kind.yaml │ ├── prober-test.yml │ ├── release.yaml │ ├── test-action-tuf.yaml │ ├── test-release.yaml │ ├── test-setup-sigstore-env.yml │ └── verify.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yaml ├── .ko.yaml ├── CODEOWNERS ├── COPYRIGHT.txt ├── LICENSE ├── Makefile ├── README.md ├── actions ├── setup-sigstore-env │ ├── Dockerfile.cosign │ ├── README.md │ ├── action.yml │ ├── build-trusted-root.sh │ ├── fakeoidc │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ └── run-containers.sh └── setup │ ├── README.md │ └── action.yml ├── cmd ├── cloudsqlproxy │ └── main.go ├── create-tink-keyset │ ├── README.md │ ├── app │ │ └── root.go │ └── main.go ├── ctlog │ ├── createctconfig │ │ └── main.go │ ├── managectroots │ │ └── main.go │ └── verifyfulcio │ │ └── main.go ├── fulcio │ └── createcerts │ │ └── main.go ├── getoidctoken │ └── main.go ├── prober │ ├── endpoints.go │ ├── prober.go │ ├── prometheus.go │ └── write.go ├── rekor │ └── rekor-createsecret │ │ └── main.go ├── trillian │ ├── createdb │ │ └── main.go │ ├── createtree │ │ └── main.go │ └── updatetree │ │ └── main.go ├── tsa │ └── createcertchain │ │ └── main.go └── tuf │ ├── createsecret │ └── main.go │ └── server │ └── main.go ├── config ├── ctlog │ ├── certs │ │ ├── 100-namespace.yaml │ │ ├── 101-binding.yaml │ │ ├── 101-configmap.yaml │ │ ├── 101-service-account.yaml │ │ ├── 300-createconfig.yaml │ │ └── placeholder.go │ ├── createtree │ │ ├── 100-namespace.yaml │ │ ├── 101-binding.yaml │ │ ├── 101-configmap.yaml │ │ ├── 101-service-account.yaml │ │ ├── 300-createtree.yaml │ │ └── placeholder.go │ └── ctlog │ │ ├── 100-namespace.yaml │ │ ├── 101-configmap.yaml │ │ ├── 101-service-account.yaml │ │ ├── 300-ctlog.yaml │ │ └── placeholder.go ├── fulcio │ ├── certs │ │ ├── 100-namespace.yaml │ │ ├── 101-binding.yaml │ │ ├── 101-service-account.yaml │ │ ├── 300-createcerts.yaml │ │ └── placeholder.go │ └── fulcio │ │ ├── 100-namespace.yaml │ │ ├── 200-configmap.yaml │ │ ├── 300-fulcio.yaml │ │ └── placeholder.go ├── prober │ ├── 100-namspace.yaml │ └── 200-deployment.yaml ├── rekor │ ├── createsecret │ │ ├── 100-namespace.yaml │ │ ├── 101-binding.yaml │ │ ├── 101-service-account.yaml │ │ └── 300-createsecret.yaml │ ├── createtree │ │ ├── 100-namespace.yaml │ │ ├── 101-binding.yaml │ │ ├── 101-configmap.yaml │ │ ├── 101-service-account.yaml │ │ ├── 300-createtree.yaml │ │ └── placeholder.go │ ├── redis │ │ ├── 100-namespace.yaml │ │ ├── 300-redis.yaml │ │ └── placeholder.go │ └── rekor │ │ ├── 100-namespace.yaml │ │ ├── 300-rekor.yaml │ │ └── placeholder.go ├── trillian │ ├── createdb │ │ ├── 100-namespace.yaml │ │ ├── 101-secret.yaml │ │ ├── 101-service-account.yaml │ │ ├── 300-createdb.yaml │ │ └── placeholder.go │ ├── mysql │ │ ├── 100-namespace.yaml │ │ ├── 101-secret.yaml │ │ ├── 300-mysql-trillian.yaml │ │ └── placeholder.go │ ├── trillian-log-server │ │ ├── 100-namespace.yaml │ │ ├── 300-log-server.yaml │ │ └── placeholder.go │ ├── trillian-log-signer │ │ ├── 100-namespace.yaml │ │ ├── 300-log-signer.yaml │ │ └── placeholder.go │ └── updatetree │ │ ├── 100-namespace.yaml │ │ └── 200-updatetree-job.yaml ├── tsa │ ├── createcertchain │ │ ├── 100-namespace.yaml │ │ ├── 101-binding.yaml │ │ ├── 101-service-account.yaml │ │ └── 300-createcertchain.yaml │ └── tsa │ │ ├── 100-namespace.yaml │ │ └── 300-tsa.yaml └── tuf │ ├── createsecret │ ├── 100-namespace.yaml │ ├── 101-binding.yaml │ ├── 101-service-account.yaml │ └── 300-create-secret.yaml │ └── server │ ├── 100-namespace.yaml │ ├── 101-binding.yaml │ └── 400-service.yaml ├── deps └── Dockerfile.deps ├── getting-started.md ├── go.mod ├── go.sum ├── hack ├── setup-kind.sh ├── setup-scaffolding-from-release.sh ├── setup-scaffolding.sh ├── tools.go ├── update-codegen.sh └── update-deps.sh ├── pkg ├── certs │ ├── certs.go │ └── certs_test.go ├── ctlog │ ├── config.go │ └── config_test.go ├── repo │ ├── repo.go │ └── repo_test.go └── secret │ ├── secret.go │ └── secret_test.go ├── release.md ├── scripts └── sign-release-images.sh ├── sigstore-architecture.png ├── testdata └── config │ ├── add-new-fulcio │ └── 300-add-fulcio.yaml │ ├── gettoken │ └── gettoken.yaml │ ├── new-fulcio │ ├── certs │ │ └── 300-createcerts.yaml │ └── fulcio │ │ └── 300-fulcio.yaml │ ├── remove-old-fulcio │ └── 300-remove-fulcio.yaml │ ├── sign-job │ ├── placeholder.go │ └── sign-job.yaml │ └── verify-job │ ├── placeholder.go │ └── verify-job.yaml └── third_party └── VENDOR-LICENSE ├── chainguard.dev └── exitdir │ └── LICENSE ├── cloud.google.com └── go │ ├── auth │ ├── LICENSE │ └── oauth2adapt │ │ └── LICENSE │ ├── compute │ └── metadata │ │ └── LICENSE │ ├── iam │ └── LICENSE │ ├── kms │ └── LICENSE │ └── longrunning │ └── LICENSE ├── filippo.io └── edwards25519 │ └── LICENSE ├── github.com ├── AliyunContainerService │ └── ack-ram-tool │ │ └── pkg │ │ └── credentials │ │ └── alibabacloudsdkgo │ │ └── helper │ │ └── LICENSE ├── Azure │ ├── azure-sdk-for-go │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── sdk │ │ │ ├── azcore │ │ │ └── LICENSE.txt │ │ │ ├── azidentity │ │ │ └── LICENSE.txt │ │ │ ├── internal │ │ │ └── LICENSE.txt │ │ │ └── security │ │ │ └── keyvault │ │ │ ├── azkeys │ │ │ └── LICENSE.txt │ │ │ └── internal │ │ │ └── LICENSE.txt │ └── go-autorest │ │ ├── autorest │ │ ├── LICENSE │ │ ├── adal │ │ │ └── LICENSE │ │ ├── azure │ │ │ ├── auth │ │ │ │ └── LICENSE │ │ │ └── cli │ │ │ │ └── LICENSE │ │ └── date │ │ │ └── LICENSE │ │ ├── logger │ │ └── LICENSE │ │ └── tracing │ │ └── LICENSE ├── AzureAD │ └── microsoft-authentication-library-for-go │ │ └── apps │ │ └── LICENSE ├── LICENSE ├── ProtonMail │ └── go-crypto │ │ └── LICENSE ├── alibabacloud-go │ ├── alibabacloud-gateway-spi │ │ └── client │ │ │ └── LICENSE │ ├── cr-20181201 │ │ └── client │ │ │ └── LICENSE │ ├── darabonba-openapi │ │ └── client │ │ │ └── LICENSE │ ├── debug │ │ └── debug │ │ │ └── LICENSE │ ├── endpoint-util │ │ └── service │ │ │ └── LICENSE │ ├── openapi-util │ │ └── service │ │ │ └── LICENSE │ ├── tea-utils │ │ └── service │ │ │ └── LICENSE │ ├── tea-xml │ │ └── service │ │ │ └── LICENSE │ └── tea │ │ └── LICENSE ├── aliyun │ └── credentials-go │ │ └── credentials │ │ └── LICENSE ├── asaskevich │ └── govalidator │ │ └── LICENSE ├── aws │ ├── aws-sdk-go-v2 │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── config │ │ │ └── LICENSE.txt │ │ ├── credentials │ │ │ └── LICENSE.txt │ │ ├── feature │ │ │ └── ec2 │ │ │ │ └── imds │ │ │ │ └── LICENSE.txt │ │ ├── internal │ │ │ ├── configsources │ │ │ │ └── LICENSE.txt │ │ │ ├── endpoints │ │ │ │ └── v2 │ │ │ │ │ └── LICENSE.txt │ │ │ ├── ini │ │ │ │ └── LICENSE.txt │ │ │ └── sync │ │ │ │ └── singleflight │ │ │ │ └── LICENSE │ │ └── service │ │ │ ├── ecr │ │ │ └── LICENSE.txt │ │ │ ├── ecrpublic │ │ │ └── LICENSE.txt │ │ │ ├── internal │ │ │ ├── accept-encoding │ │ │ │ └── LICENSE.txt │ │ │ └── presigned-url │ │ │ │ └── LICENSE.txt │ │ │ ├── kms │ │ │ └── LICENSE.txt │ │ │ ├── sso │ │ │ └── LICENSE.txt │ │ │ ├── ssooidc │ │ │ └── LICENSE.txt │ │ │ └── sts │ │ │ └── LICENSE.txt │ ├── aws-sdk-go │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── internal │ │ │ └── sync │ │ │ └── singleflight │ │ │ └── LICENSE │ └── smithy-go │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── internal │ │ └── sync │ │ └── singleflight │ │ └── LICENSE ├── awslabs │ └── amazon-ecr-credential-helper │ │ └── ecr-login │ │ └── LICENSE ├── beorn7 │ └── perks │ │ └── quantile │ │ └── LICENSE ├── blang │ └── semver │ │ └── LICENSE ├── blendle │ └── zapdriver │ │ └── LICENSE ├── buildkite │ ├── agent │ │ └── v3 │ │ │ └── LICENSE.txt │ ├── go-pipeline │ │ └── LICENSE │ ├── interpolate │ │ └── LICENSE.txt │ └── roko │ │ └── LICENSE.md ├── cenkalti │ └── backoff │ │ └── v3 │ │ └── LICENSE ├── cespare │ └── xxhash │ │ └── v2 │ │ └── LICENSE.txt ├── chrismellard │ └── docker-credential-acr-env │ │ └── pkg │ │ └── LICENSE ├── clbanning │ └── mxj │ │ └── v2 │ │ └── LICENSE ├── cloudflare │ └── circl │ │ └── LICENSE ├── common-nighthawk │ └── go-figure │ │ └── LICENSE ├── containerd │ └── stargz-snapshotter │ │ └── estargz │ │ └── LICENSE ├── coreos │ └── go-oidc │ │ └── v3 │ │ └── oidc │ │ ├── LICENSE │ │ └── NOTICE ├── cyberphone │ └── json-canonicalization │ │ └── go │ │ └── src │ │ └── webpki.org │ │ └── jsoncanonicalizer │ │ └── LICENSE ├── davecgh │ └── go-spew │ │ └── spew │ │ └── LICENSE ├── digitorus │ ├── pkcs7 │ │ └── LICENSE │ └── timestamp │ │ └── LICENSE ├── dimchansky │ └── utfbom │ │ └── LICENSE ├── docker │ ├── cli │ │ └── cli │ │ │ └── config │ │ │ ├── LICENSE │ │ │ └── NOTICE │ ├── distribution │ │ └── registry │ │ │ └── client │ │ │ └── auth │ │ │ └── challenge │ │ │ └── LICENSE │ └── docker-credential-helpers │ │ └── LICENSE ├── dustin │ └── go-humanize │ │ └── LICENSE ├── emicklei │ └── go-restful │ │ └── v3 │ │ └── LICENSE ├── felixge │ └── httpsnoop │ │ └── LICENSE.txt ├── fsnotify │ └── fsnotify │ │ └── LICENSE ├── fxamacker │ └── cbor │ │ └── v2 │ │ └── LICENSE ├── go-chi │ └── chi │ │ └── LICENSE ├── go-jose │ └── go-jose │ │ ├── v3 │ │ ├── LICENSE │ │ └── json │ │ │ └── LICENSE │ │ └── v4 │ │ ├── LICENSE │ │ └── json │ │ └── LICENSE ├── go-logr │ ├── logr │ │ └── LICENSE │ └── stdr │ │ └── LICENSE ├── go-openapi │ ├── analysis │ │ └── LICENSE │ ├── errors │ │ └── LICENSE │ ├── jsonpointer │ │ └── LICENSE │ ├── jsonreference │ │ └── LICENSE │ ├── loads │ │ └── LICENSE │ ├── runtime │ │ ├── LICENSE │ │ └── middleware │ │ │ └── denco │ │ │ └── LICENSE │ ├── spec │ │ └── LICENSE │ ├── strfmt │ │ └── LICENSE │ ├── swag │ │ └── LICENSE │ └── validate │ │ └── LICENSE ├── go-sql-driver │ └── mysql │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── atomic_bool.go │ │ ├── atomic_bool_go118.go │ │ ├── auth.go │ │ ├── buffer.go │ │ ├── collations.go │ │ ├── conncheck.go │ │ ├── conncheck_dummy.go │ │ ├── connection.go │ │ ├── connector.go │ │ ├── const.go │ │ ├── driver.go │ │ ├── dsn.go │ │ ├── errors.go │ │ ├── fields.go │ │ ├── infile.go │ │ ├── nulltime.go │ │ ├── packets.go │ │ ├── result.go │ │ ├── rows.go │ │ ├── statement.go │ │ ├── transaction.go │ │ └── utils.go ├── gogo │ └── protobuf │ │ └── LICENSE ├── golang-jwt │ └── jwt │ │ ├── v4 │ │ └── LICENSE │ │ └── v5 │ │ └── LICENSE ├── golang │ ├── glog │ │ └── LICENSE │ ├── groupcache │ │ └── lru │ │ │ └── LICENSE │ ├── protobuf │ │ └── proto │ │ │ └── LICENSE │ └── snappy │ │ └── LICENSE ├── google │ ├── certificate-transparency-go │ │ └── LICENSE │ ├── gnostic-models │ │ └── LICENSE │ ├── go-cmp │ │ └── cmp │ │ │ └── LICENSE │ ├── go-containerregistry │ │ └── LICENSE │ ├── go-github │ │ └── v55 │ │ │ └── github │ │ │ └── LICENSE │ ├── go-querystring │ │ └── query │ │ │ └── LICENSE │ ├── gofuzz │ │ └── LICENSE │ ├── s2a-go │ │ └── LICENSE.md │ ├── tink │ │ └── go │ │ │ └── LICENSE │ ├── trillian │ │ └── LICENSE │ └── uuid │ │ └── LICENSE ├── googleapis │ ├── enterprise-certificate-proxy │ │ └── client │ │ │ └── LICENSE │ └── gax-go │ │ └── v2 │ │ └── LICENSE ├── grpc-ecosystem │ └── grpc-gateway │ │ └── v2 │ │ └── LICENSE ├── hashicorp │ ├── errwrap │ │ ├── LICENSE │ │ ├── README.md │ │ └── errwrap.go │ ├── go-cleanhttp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cleanhttp.go │ │ ├── doc.go │ │ └── handlers.go │ ├── go-multierror │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── append.go │ │ ├── flatten.go │ │ ├── format.go │ │ ├── group.go │ │ ├── multierror.go │ │ ├── prefix.go │ │ └── sort.go │ ├── go-retryablehttp │ │ ├── .gitignore │ │ ├── .go-version │ │ ├── CHANGELOG.md │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cert_error_go119.go │ │ ├── cert_error_go120.go │ │ ├── client.go │ │ └── roundtripper.go │ ├── go-rootcerts │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── rootcerts.go │ │ ├── rootcerts_base.go │ │ └── rootcerts_darwin.go │ ├── go-secure-stdlib │ │ ├── parseutil │ │ │ ├── LICENSE │ │ │ ├── parsepath.go │ │ │ └── parseutil.go │ │ └── strutil │ │ │ ├── LICENSE │ │ │ └── strutil.go │ ├── go-sockaddr │ │ ├── .gitignore │ │ ├── GNUmakefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── ifaddr.go │ │ ├── ifaddrs.go │ │ ├── ifattr.go │ │ ├── ipaddr.go │ │ ├── ipaddrs.go │ │ ├── ipv4addr.go │ │ ├── ipv6addr.go │ │ ├── rfc.go │ │ ├── route_info.go │ │ ├── route_info_android.go │ │ ├── route_info_bsd.go │ │ ├── route_info_default.go │ │ ├── route_info_linux.go │ │ ├── route_info_solaris.go │ │ ├── route_info_test_windows.go │ │ ├── route_info_windows.go │ │ ├── sockaddr.go │ │ ├── sockaddrs.go │ │ └── unixsock.go │ ├── hcl │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── decoder.go │ │ ├── hcl.go │ │ ├── hcl │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ └── walk.go │ │ │ ├── parser │ │ │ │ ├── error.go │ │ │ │ └── parser.go │ │ │ ├── printer │ │ │ │ ├── nodes.go │ │ │ │ └── printer.go │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ ├── strconv │ │ │ │ └── quote.go │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ ├── json │ │ │ ├── parser │ │ │ │ ├── flatten.go │ │ │ │ └── parser.go │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ ├── lex.go │ │ └── parse.go │ └── vault │ │ └── api │ │ ├── .copywrite.hcl │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auth.go │ │ ├── auth_token.go │ │ ├── client.go │ │ ├── help.go │ │ ├── kv.go │ │ ├── kv_v1.go │ │ ├── kv_v2.go │ │ ├── lifetime_watcher.go │ │ ├── logical.go │ │ ├── output_policy.go │ │ ├── output_string.go │ │ ├── plugin_helpers.go │ │ ├── plugin_runtime_types.go │ │ ├── plugin_types.go │ │ ├── pluginruntimetype_enumer.go │ │ ├── renewbehavior_enumer.go │ │ ├── replication_status.go │ │ ├── request.go │ │ ├── response.go │ │ ├── secret.go │ │ ├── ssh.go │ │ ├── ssh_agent.go │ │ ├── sudo_paths.go │ │ ├── sys.go │ │ ├── sys_audit.go │ │ ├── sys_auth.go │ │ ├── sys_capabilities.go │ │ ├── sys_config_cors.go │ │ ├── sys_generate_root.go │ │ ├── sys_hastatus.go │ │ ├── sys_health.go │ │ ├── sys_init.go │ │ ├── sys_leader.go │ │ ├── sys_leases.go │ │ ├── sys_mfa.go │ │ ├── sys_monitor.go │ │ ├── sys_mounts.go │ │ ├── sys_plugins.go │ │ ├── sys_plugins_runtimes.go │ │ ├── sys_policy.go │ │ ├── sys_raft.go │ │ ├── sys_rekey.go │ │ ├── sys_rotate.go │ │ ├── sys_seal.go │ │ ├── sys_stepdown.go │ │ └── sys_ui_custom_message.go ├── imdario │ └── mergo │ │ └── LICENSE ├── in-toto │ └── in-toto-golang │ │ └── in_toto │ │ └── LICENSE ├── jedisct1 │ └── go-minisign │ │ └── LICENSE ├── jellydator │ └── ttlcache │ │ └── v3 │ │ └── LICENSE ├── jmespath │ └── go-jmespath │ │ ├── LICENSE │ │ └── NOTICE ├── josharian │ └── intern │ │ └── license.md ├── json-iterator │ └── go │ │ └── LICENSE ├── kelseyhightower │ └── envconfig │ │ └── LICENSE ├── klauspost │ └── compress │ │ ├── LICENSE │ │ ├── internal │ │ └── snapref │ │ │ └── LICENSE │ │ └── zstd │ │ └── internal │ │ └── xxhash │ │ └── LICENSE.txt ├── kylelemons │ └── godebug │ │ └── LICENSE ├── letsencrypt │ └── boulder │ │ ├── LICENSE.txt │ │ ├── core │ │ ├── challenges.go │ │ ├── interfaces.go │ │ ├── objects.go │ │ └── util.go │ │ ├── goodkey │ │ ├── blocked.go │ │ ├── good_key.go │ │ └── weak.go │ │ ├── identifier │ │ └── identifier.go │ │ ├── probs │ │ └── probs.go │ │ ├── revocation │ │ └── reasons.go │ │ └── strictyaml │ │ └── yaml.go ├── magiconair │ └── properties │ │ └── LICENSE.md ├── mailru │ └── easyjson │ │ └── LICENSE ├── mitchellh │ ├── go-homedir │ │ └── LICENSE │ └── mapstructure │ │ └── LICENSE ├── modern-go │ ├── concurrent │ │ └── LICENSE │ └── reflect2 │ │ └── LICENSE ├── mozillazg │ └── docker-credential-acr-helper │ │ └── pkg │ │ └── LICENSE ├── munnerz │ └── goautoneg │ │ └── LICENSE ├── nozzle │ └── throttler │ │ └── LICENSE ├── oklog │ └── ulid │ │ └── LICENSE ├── oleiade │ └── reflections │ │ └── LICENSE ├── opencontainers │ ├── go-digest │ │ └── LICENSE │ └── image-spec │ │ └── specs-go │ │ └── LICENSE ├── opentracing │ └── opentracing-go │ │ └── LICENSE ├── pborman │ └── uuid │ │ └── LICENSE ├── pelletier │ └── go-toml │ │ └── v2 │ │ └── LICENSE ├── pkg │ ├── browser │ │ └── LICENSE │ └── errors │ │ └── LICENSE ├── prometheus │ ├── client_golang │ │ ├── internal │ │ │ └── github.com │ │ │ │ └── golang │ │ │ │ └── gddo │ │ │ │ └── httputil │ │ │ │ └── LICENSE │ │ └── prometheus │ │ │ ├── LICENSE │ │ │ └── NOTICE │ ├── client_model │ │ └── go │ │ │ ├── LICENSE │ │ │ └── NOTICE │ ├── common │ │ ├── LICENSE │ │ └── NOTICE │ └── procfs │ │ ├── LICENSE │ │ └── NOTICE ├── ryanuber │ └── go-glob │ │ └── LICENSE ├── sagikazarmark │ └── slog-shim │ │ └── LICENSE ├── sassoftware │ └── relic │ │ └── lib │ │ └── LICENSE ├── secure-systems-lab │ └── go-securesystemslib │ │ └── LICENSE ├── segmentio │ └── ksuid │ │ └── LICENSE.md ├── shibumi │ └── go-pathspec │ │ └── LICENSE ├── sigstore │ ├── cosign │ │ └── v2 │ │ │ └── LICENSE │ ├── fulcio │ │ └── pkg │ │ │ └── LICENSE │ ├── protobuf-specs │ │ └── gen │ │ │ └── pb-go │ │ │ └── LICENSE │ ├── rekor │ │ └── pkg │ │ │ └── LICENSE │ ├── sigstore-go │ │ └── pkg │ │ │ └── LICENSE │ ├── sigstore │ │ └── pkg │ │ │ ├── LICENSE │ │ │ └── signature │ │ │ └── kms │ │ │ ├── aws │ │ │ └── LICENSE │ │ │ ├── azure │ │ │ └── LICENSE │ │ │ ├── gcp │ │ │ └── LICENSE │ │ │ └── hashivault │ │ │ └── LICENSE │ └── timestamp-authority │ │ └── pkg │ │ └── LICENSE ├── sirupsen │ └── logrus │ │ └── LICENSE ├── skratchdot │ └── open-golang │ │ └── open │ │ └── LICENSE ├── spf13 │ ├── afero │ │ └── LICENSE.txt │ ├── cast │ │ └── LICENSE │ ├── cobra │ │ └── LICENSE.txt │ ├── pflag │ │ └── LICENSE │ └── viper │ │ └── LICENSE ├── spiffe │ └── go-spiffe │ │ └── v2 │ │ └── LICENSE ├── subosito │ └── gotenv │ │ └── LICENSE ├── syndtr │ └── goleveldb │ │ └── leveldb │ │ └── LICENSE ├── theupdateframework │ └── go-tuf │ │ ├── LICENSE │ │ └── v2 │ │ └── metadata │ │ ├── LICENSE │ │ └── NOTICE ├── titanous │ └── rocacheck │ │ └── LICENSE ├── tjfoc │ └── gmsm │ │ └── sm3 │ │ └── LICENSE ├── transparency-dev │ └── merkle │ │ └── LICENSE ├── vbatts │ └── tar-split │ │ └── archive │ │ └── tar │ │ └── LICENSE ├── x448 │ └── float16 │ │ └── LICENSE ├── xanzy │ └── go-gitlab │ │ └── LICENSE └── zeebo │ └── errs │ └── LICENSE ├── go.mongodb.org └── mongo-driver │ └── LICENSE ├── go.opencensus.io └── LICENSE ├── go.opentelemetry.io ├── contrib │ └── instrumentation │ │ ├── google.golang.org │ │ └── grpc │ │ │ └── otelgrpc │ │ │ └── LICENSE │ │ └── net │ │ └── http │ │ └── otelhttp │ │ └── LICENSE └── otel │ ├── LICENSE │ ├── metric │ └── LICENSE │ └── trace │ └── LICENSE ├── go.step.sm └── crypto │ ├── LICENSE │ └── internal │ ├── bcrypt_pbkdf │ └── LICENSE │ └── utils │ └── utfbom │ └── LICENSE ├── go.uber.org ├── multierr │ └── LICENSE.txt └── zap │ └── LICENSE ├── golang.org └── x │ ├── crypto │ └── LICENSE │ ├── exp │ └── LICENSE │ ├── mod │ └── sumdb │ │ └── note │ │ └── LICENSE │ ├── net │ └── LICENSE │ ├── oauth2 │ └── LICENSE │ ├── sync │ └── LICENSE │ ├── sys │ └── LICENSE │ ├── term │ └── LICENSE │ ├── text │ └── LICENSE │ └── time │ └── rate │ └── LICENSE ├── google.golang.org ├── api │ ├── LICENSE │ └── internal │ │ └── third_party │ │ └── uritemplates │ │ └── LICENSE ├── genproto │ ├── LICENSE │ └── googleapis │ │ ├── api │ │ └── LICENSE │ │ └── rpc │ │ └── LICENSE ├── grpc │ ├── LICENSE │ └── NOTICE.txt └── protobuf │ └── LICENSE ├── gopkg.in ├── inf.v0 │ └── LICENSE ├── ini.v1 │ └── LICENSE ├── yaml.v2 │ ├── LICENSE │ └── NOTICE └── yaml.v3 │ ├── LICENSE │ └── NOTICE ├── k8s.io ├── api │ └── LICENSE ├── apimachinery │ ├── pkg │ │ └── LICENSE │ └── third_party │ │ └── forked │ │ └── golang │ │ └── reflect │ │ └── LICENSE ├── client-go │ └── LICENSE ├── klog │ └── v2 │ │ └── LICENSE ├── kube-openapi │ └── pkg │ │ ├── LICENSE │ │ ├── internal │ │ └── third_party │ │ │ └── go-json-experiment │ │ │ └── json │ │ │ └── LICENSE │ │ └── validation │ │ └── spec │ │ └── LICENSE └── utils │ ├── LICENSE │ └── internal │ └── third_party │ └── forked │ └── golang │ └── net │ └── LICENSE ├── knative.dev └── pkg │ └── LICENSE └── sigs.k8s.io ├── json └── LICENSE ├── release-utils └── version │ └── LICENSE ├── structured-merge-diff └── v4 │ └── LICENSE └── yaml ├── LICENSE └── goyaml.v2 ├── LICENSE └── NOTICE /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/add-remove-new-fulcio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.github/workflows/add-remove-new-fulcio.yaml -------------------------------------------------------------------------------- /.github/workflows/cloud-sql-proxy-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.github/workflows/cloud-sql-proxy-update.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/create-tink-keyset-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.github/workflows/create-tink-keyset-test.yml -------------------------------------------------------------------------------- /.github/workflows/fulcio-rekor-kind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.github/workflows/fulcio-rekor-kind.yaml -------------------------------------------------------------------------------- /.github/workflows/prober-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.github/workflows/prober-test.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test-action-tuf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.github/workflows/test-action-tuf.yaml -------------------------------------------------------------------------------- /.github/workflows/test-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.github/workflows/test-release.yaml -------------------------------------------------------------------------------- /.github/workflows/test-setup-sigstore-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.github/workflows/test-setup-sigstore-env.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.ko.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/.ko.yaml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/README.md -------------------------------------------------------------------------------- /actions/setup-sigstore-env/Dockerfile.cosign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/actions/setup-sigstore-env/Dockerfile.cosign -------------------------------------------------------------------------------- /actions/setup-sigstore-env/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/actions/setup-sigstore-env/README.md -------------------------------------------------------------------------------- /actions/setup-sigstore-env/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/actions/setup-sigstore-env/action.yml -------------------------------------------------------------------------------- /actions/setup-sigstore-env/build-trusted-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/actions/setup-sigstore-env/build-trusted-root.sh -------------------------------------------------------------------------------- /actions/setup-sigstore-env/fakeoidc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/actions/setup-sigstore-env/fakeoidc/Dockerfile -------------------------------------------------------------------------------- /actions/setup-sigstore-env/fakeoidc/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/actions/setup-sigstore-env/fakeoidc/docker-compose.yml -------------------------------------------------------------------------------- /actions/setup-sigstore-env/fakeoidc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/actions/setup-sigstore-env/fakeoidc/go.mod -------------------------------------------------------------------------------- /actions/setup-sigstore-env/fakeoidc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/actions/setup-sigstore-env/fakeoidc/go.sum -------------------------------------------------------------------------------- /actions/setup-sigstore-env/fakeoidc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/actions/setup-sigstore-env/fakeoidc/main.go -------------------------------------------------------------------------------- /actions/setup-sigstore-env/run-containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/actions/setup-sigstore-env/run-containers.sh -------------------------------------------------------------------------------- /actions/setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/actions/setup/README.md -------------------------------------------------------------------------------- /actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/actions/setup/action.yml -------------------------------------------------------------------------------- /cmd/cloudsqlproxy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/cloudsqlproxy/main.go -------------------------------------------------------------------------------- /cmd/create-tink-keyset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/create-tink-keyset/README.md -------------------------------------------------------------------------------- /cmd/create-tink-keyset/app/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/create-tink-keyset/app/root.go -------------------------------------------------------------------------------- /cmd/create-tink-keyset/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/create-tink-keyset/main.go -------------------------------------------------------------------------------- /cmd/ctlog/createctconfig/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/ctlog/createctconfig/main.go -------------------------------------------------------------------------------- /cmd/ctlog/managectroots/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/ctlog/managectroots/main.go -------------------------------------------------------------------------------- /cmd/ctlog/verifyfulcio/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/ctlog/verifyfulcio/main.go -------------------------------------------------------------------------------- /cmd/fulcio/createcerts/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/fulcio/createcerts/main.go -------------------------------------------------------------------------------- /cmd/getoidctoken/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/getoidctoken/main.go -------------------------------------------------------------------------------- /cmd/prober/endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/prober/endpoints.go -------------------------------------------------------------------------------- /cmd/prober/prober.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/prober/prober.go -------------------------------------------------------------------------------- /cmd/prober/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/prober/prometheus.go -------------------------------------------------------------------------------- /cmd/prober/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/prober/write.go -------------------------------------------------------------------------------- /cmd/rekor/rekor-createsecret/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/rekor/rekor-createsecret/main.go -------------------------------------------------------------------------------- /cmd/trillian/createdb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/trillian/createdb/main.go -------------------------------------------------------------------------------- /cmd/trillian/createtree/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/trillian/createtree/main.go -------------------------------------------------------------------------------- /cmd/trillian/updatetree/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/trillian/updatetree/main.go -------------------------------------------------------------------------------- /cmd/tsa/createcertchain/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/tsa/createcertchain/main.go -------------------------------------------------------------------------------- /cmd/tuf/createsecret/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/tuf/createsecret/main.go -------------------------------------------------------------------------------- /cmd/tuf/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/cmd/tuf/server/main.go -------------------------------------------------------------------------------- /config/ctlog/certs/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: Namespace 3 | apiVersion: v1 4 | metadata: 5 | name: ctlog-system 6 | -------------------------------------------------------------------------------- /config/ctlog/certs/101-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/certs/101-binding.yaml -------------------------------------------------------------------------------- /config/ctlog/certs/101-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/certs/101-configmap.yaml -------------------------------------------------------------------------------- /config/ctlog/certs/101-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/certs/101-service-account.yaml -------------------------------------------------------------------------------- /config/ctlog/certs/300-createconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/certs/300-createconfig.yaml -------------------------------------------------------------------------------- /config/ctlog/certs/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/certs/placeholder.go -------------------------------------------------------------------------------- /config/ctlog/createtree/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: Namespace 3 | apiVersion: v1 4 | metadata: 5 | name: ctlog-system 6 | -------------------------------------------------------------------------------- /config/ctlog/createtree/101-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/createtree/101-binding.yaml -------------------------------------------------------------------------------- /config/ctlog/createtree/101-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/createtree/101-configmap.yaml -------------------------------------------------------------------------------- /config/ctlog/createtree/101-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/createtree/101-service-account.yaml -------------------------------------------------------------------------------- /config/ctlog/createtree/300-createtree.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/createtree/300-createtree.yaml -------------------------------------------------------------------------------- /config/ctlog/createtree/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/createtree/placeholder.go -------------------------------------------------------------------------------- /config/ctlog/ctlog/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: Namespace 3 | apiVersion: v1 4 | metadata: 5 | name: ctlog-system 6 | -------------------------------------------------------------------------------- /config/ctlog/ctlog/101-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/ctlog/101-configmap.yaml -------------------------------------------------------------------------------- /config/ctlog/ctlog/101-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/ctlog/101-service-account.yaml -------------------------------------------------------------------------------- /config/ctlog/ctlog/300-ctlog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/ctlog/300-ctlog.yaml -------------------------------------------------------------------------------- /config/ctlog/ctlog/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/ctlog/ctlog/placeholder.go -------------------------------------------------------------------------------- /config/fulcio/certs/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: Namespace 3 | apiVersion: v1 4 | metadata: 5 | name: fulcio-system 6 | -------------------------------------------------------------------------------- /config/fulcio/certs/101-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/fulcio/certs/101-binding.yaml -------------------------------------------------------------------------------- /config/fulcio/certs/101-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/fulcio/certs/101-service-account.yaml -------------------------------------------------------------------------------- /config/fulcio/certs/300-createcerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/fulcio/certs/300-createcerts.yaml -------------------------------------------------------------------------------- /config/fulcio/certs/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/fulcio/certs/placeholder.go -------------------------------------------------------------------------------- /config/fulcio/fulcio/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: Namespace 3 | apiVersion: v1 4 | metadata: 5 | name: fulcio-system 6 | -------------------------------------------------------------------------------- /config/fulcio/fulcio/200-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/fulcio/fulcio/200-configmap.yaml -------------------------------------------------------------------------------- /config/fulcio/fulcio/300-fulcio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/fulcio/fulcio/300-fulcio.yaml -------------------------------------------------------------------------------- /config/fulcio/fulcio/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/fulcio/fulcio/placeholder.go -------------------------------------------------------------------------------- /config/prober/100-namspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/prober/100-namspace.yaml -------------------------------------------------------------------------------- /config/prober/200-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/prober/200-deployment.yaml -------------------------------------------------------------------------------- /config/rekor/createsecret/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: Namespace 3 | apiVersion: v1 4 | metadata: 5 | name: rekor-system 6 | -------------------------------------------------------------------------------- /config/rekor/createsecret/101-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/rekor/createsecret/101-binding.yaml -------------------------------------------------------------------------------- /config/rekor/createsecret/101-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/rekor/createsecret/101-service-account.yaml -------------------------------------------------------------------------------- /config/rekor/createsecret/300-createsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/rekor/createsecret/300-createsecret.yaml -------------------------------------------------------------------------------- /config/rekor/createtree/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: Namespace 3 | apiVersion: v1 4 | metadata: 5 | name: rekor-system 6 | -------------------------------------------------------------------------------- /config/rekor/createtree/101-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/rekor/createtree/101-binding.yaml -------------------------------------------------------------------------------- /config/rekor/createtree/101-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/rekor/createtree/101-configmap.yaml -------------------------------------------------------------------------------- /config/rekor/createtree/101-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/rekor/createtree/101-service-account.yaml -------------------------------------------------------------------------------- /config/rekor/createtree/300-createtree.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/rekor/createtree/300-createtree.yaml -------------------------------------------------------------------------------- /config/rekor/createtree/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/rekor/createtree/placeholder.go -------------------------------------------------------------------------------- /config/rekor/redis/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: Namespace 3 | apiVersion: v1 4 | metadata: 5 | name: rekor-system 6 | -------------------------------------------------------------------------------- /config/rekor/redis/300-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/rekor/redis/300-redis.yaml -------------------------------------------------------------------------------- /config/rekor/redis/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/rekor/redis/placeholder.go -------------------------------------------------------------------------------- /config/rekor/rekor/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: Namespace 3 | apiVersion: v1 4 | metadata: 5 | name: rekor-system 6 | -------------------------------------------------------------------------------- /config/rekor/rekor/300-rekor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/rekor/rekor/300-rekor.yaml -------------------------------------------------------------------------------- /config/rekor/rekor/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/rekor/rekor/placeholder.go -------------------------------------------------------------------------------- /config/trillian/createdb/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | kind: Namespace 2 | apiVersion: v1 3 | metadata: 4 | name: trillian-system 5 | -------------------------------------------------------------------------------- /config/trillian/createdb/101-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/createdb/101-secret.yaml -------------------------------------------------------------------------------- /config/trillian/createdb/101-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/createdb/101-service-account.yaml -------------------------------------------------------------------------------- /config/trillian/createdb/300-createdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/createdb/300-createdb.yaml -------------------------------------------------------------------------------- /config/trillian/createdb/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/createdb/placeholder.go -------------------------------------------------------------------------------- /config/trillian/mysql/100-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/mysql/100-namespace.yaml -------------------------------------------------------------------------------- /config/trillian/mysql/101-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/mysql/101-secret.yaml -------------------------------------------------------------------------------- /config/trillian/mysql/300-mysql-trillian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/mysql/300-mysql-trillian.yaml -------------------------------------------------------------------------------- /config/trillian/mysql/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/mysql/placeholder.go -------------------------------------------------------------------------------- /config/trillian/trillian-log-server/100-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/trillian-log-server/100-namespace.yaml -------------------------------------------------------------------------------- /config/trillian/trillian-log-server/300-log-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/trillian-log-server/300-log-server.yaml -------------------------------------------------------------------------------- /config/trillian/trillian-log-server/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/trillian-log-server/placeholder.go -------------------------------------------------------------------------------- /config/trillian/trillian-log-signer/100-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/trillian-log-signer/100-namespace.yaml -------------------------------------------------------------------------------- /config/trillian/trillian-log-signer/300-log-signer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/trillian-log-signer/300-log-signer.yaml -------------------------------------------------------------------------------- /config/trillian/trillian-log-signer/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/trillian-log-signer/placeholder.go -------------------------------------------------------------------------------- /config/trillian/updatetree/100-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/updatetree/100-namespace.yaml -------------------------------------------------------------------------------- /config/trillian/updatetree/200-updatetree-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/trillian/updatetree/200-updatetree-job.yaml -------------------------------------------------------------------------------- /config/tsa/createcertchain/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: Namespace 3 | apiVersion: v1 4 | metadata: 5 | name: tsa-system 6 | -------------------------------------------------------------------------------- /config/tsa/createcertchain/101-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/tsa/createcertchain/101-binding.yaml -------------------------------------------------------------------------------- /config/tsa/createcertchain/101-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/tsa/createcertchain/101-service-account.yaml -------------------------------------------------------------------------------- /config/tsa/createcertchain/300-createcertchain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/tsa/createcertchain/300-createcertchain.yaml -------------------------------------------------------------------------------- /config/tsa/tsa/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: Namespace 3 | apiVersion: v1 4 | metadata: 5 | name: tsa-system 6 | -------------------------------------------------------------------------------- /config/tsa/tsa/300-tsa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/tsa/tsa/300-tsa.yaml -------------------------------------------------------------------------------- /config/tuf/createsecret/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: Namespace 3 | apiVersion: v1 4 | metadata: 5 | name: tuf-system 6 | -------------------------------------------------------------------------------- /config/tuf/createsecret/101-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/tuf/createsecret/101-binding.yaml -------------------------------------------------------------------------------- /config/tuf/createsecret/101-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/tuf/createsecret/101-service-account.yaml -------------------------------------------------------------------------------- /config/tuf/createsecret/300-create-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/tuf/createsecret/300-create-secret.yaml -------------------------------------------------------------------------------- /config/tuf/server/100-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: Namespace 3 | apiVersion: v1 4 | metadata: 5 | name: tuf-system 6 | -------------------------------------------------------------------------------- /config/tuf/server/101-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/tuf/server/101-binding.yaml -------------------------------------------------------------------------------- /config/tuf/server/400-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/config/tuf/server/400-service.yaml -------------------------------------------------------------------------------- /deps/Dockerfile.deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/deps/Dockerfile.deps -------------------------------------------------------------------------------- /getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/getting-started.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/go.sum -------------------------------------------------------------------------------- /hack/setup-kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/hack/setup-kind.sh -------------------------------------------------------------------------------- /hack/setup-scaffolding-from-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/hack/setup-scaffolding-from-release.sh -------------------------------------------------------------------------------- /hack/setup-scaffolding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/hack/setup-scaffolding.sh -------------------------------------------------------------------------------- /hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/hack/tools.go -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /hack/update-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/hack/update-deps.sh -------------------------------------------------------------------------------- /pkg/certs/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/pkg/certs/certs.go -------------------------------------------------------------------------------- /pkg/certs/certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/pkg/certs/certs_test.go -------------------------------------------------------------------------------- /pkg/ctlog/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/pkg/ctlog/config.go -------------------------------------------------------------------------------- /pkg/ctlog/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/pkg/ctlog/config_test.go -------------------------------------------------------------------------------- /pkg/repo/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/pkg/repo/repo.go -------------------------------------------------------------------------------- /pkg/repo/repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/pkg/repo/repo_test.go -------------------------------------------------------------------------------- /pkg/secret/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/pkg/secret/secret.go -------------------------------------------------------------------------------- /pkg/secret/secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/pkg/secret/secret_test.go -------------------------------------------------------------------------------- /release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/release.md -------------------------------------------------------------------------------- /scripts/sign-release-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/scripts/sign-release-images.sh -------------------------------------------------------------------------------- /sigstore-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/sigstore-architecture.png -------------------------------------------------------------------------------- /testdata/config/add-new-fulcio/300-add-fulcio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/testdata/config/add-new-fulcio/300-add-fulcio.yaml -------------------------------------------------------------------------------- /testdata/config/gettoken/gettoken.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/testdata/config/gettoken/gettoken.yaml -------------------------------------------------------------------------------- /testdata/config/new-fulcio/certs/300-createcerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/testdata/config/new-fulcio/certs/300-createcerts.yaml -------------------------------------------------------------------------------- /testdata/config/new-fulcio/fulcio/300-fulcio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/testdata/config/new-fulcio/fulcio/300-fulcio.yaml -------------------------------------------------------------------------------- /testdata/config/remove-old-fulcio/300-remove-fulcio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/testdata/config/remove-old-fulcio/300-remove-fulcio.yaml -------------------------------------------------------------------------------- /testdata/config/sign-job/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/testdata/config/sign-job/placeholder.go -------------------------------------------------------------------------------- /testdata/config/sign-job/sign-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/testdata/config/sign-job/sign-job.yaml -------------------------------------------------------------------------------- /testdata/config/verify-job/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/testdata/config/verify-job/placeholder.go -------------------------------------------------------------------------------- /testdata/config/verify-job/verify-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/testdata/config/verify-job/verify-job.yaml -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/chainguard.dev/exitdir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/chainguard.dev/exitdir/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/cloud.google.com/go/auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/cloud.google.com/go/auth/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/cloud.google.com/go/auth/oauth2adapt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/cloud.google.com/go/auth/oauth2adapt/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/cloud.google.com/go/compute/metadata/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/cloud.google.com/go/compute/metadata/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/cloud.google.com/go/iam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/cloud.google.com/go/iam/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/cloud.google.com/go/kms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/cloud.google.com/go/kms/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/cloud.google.com/go/longrunning/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/cloud.google.com/go/longrunning/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/filippo.io/edwards25519/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/filippo.io/edwards25519/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/AliyunContainerService/ack-ram-tool/pkg/credentials/alibabacloudsdkgo/helper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/AliyunContainerService/ack-ram-tool/pkg/credentials/alibabacloudsdkgo/helper/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/NOTICE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/sdk/azcore/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/sdk/azcore/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/sdk/azidentity/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/sdk/azidentity/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/sdk/internal/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/sdk/internal/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/adal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/adal/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/azure/auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/azure/auth/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/azure/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/azure/cli/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/date/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/autorest/date/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/logger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/logger/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/tracing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/Azure/go-autorest/tracing/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/AzureAD/microsoft-authentication-library-for-go/apps/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/AzureAD/microsoft-authentication-library-for-go/apps/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/ProtonMail/go-crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/ProtonMail/go-crypto/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/alibabacloud-go/alibabacloud-gateway-spi/client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/alibabacloud-go/alibabacloud-gateway-spi/client/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/alibabacloud-go/cr-20181201/client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/alibabacloud-go/cr-20181201/client/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/alibabacloud-go/darabonba-openapi/client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/alibabacloud-go/darabonba-openapi/client/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/alibabacloud-go/debug/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/alibabacloud-go/debug/debug/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/alibabacloud-go/endpoint-util/service/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/alibabacloud-go/endpoint-util/service/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/alibabacloud-go/openapi-util/service/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/alibabacloud-go/openapi-util/service/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/alibabacloud-go/tea-utils/service/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/alibabacloud-go/tea-utils/service/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/alibabacloud-go/tea-xml/service/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/alibabacloud-go/tea-xml/service/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/alibabacloud-go/tea/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/alibabacloud-go/tea/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aliyun/credentials-go/credentials/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aliyun/credentials-go/credentials/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/asaskevich/govalidator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/asaskevich/govalidator/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/NOTICE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/config/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/config/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/credentials/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/credentials/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/feature/ec2/imds/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/feature/ec2/imds/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/internal/configsources/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/internal/configsources/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/internal/ini/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/internal/ini/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/internal/sync/singleflight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/internal/sync/singleflight/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/ecr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/ecr/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/ecrpublic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/ecrpublic/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/kms/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/kms/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/sso/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/sso/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/ssooidc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/ssooidc/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/sts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go-v2/service/sts/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go/NOTICE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go/internal/sync/singleflight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/aws-sdk-go/internal/sync/singleflight/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/smithy-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/smithy-go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/smithy-go/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/aws/smithy-go/internal/sync/singleflight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/aws/smithy-go/internal/sync/singleflight/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/awslabs/amazon-ecr-credential-helper/ecr-login/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/awslabs/amazon-ecr-credential-helper/ecr-login/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/beorn7/perks/quantile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/beorn7/perks/quantile/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/blang/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/blang/semver/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/blendle/zapdriver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/blendle/zapdriver/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/buildkite/agent/v3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/buildkite/agent/v3/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/buildkite/go-pipeline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/buildkite/go-pipeline/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/buildkite/interpolate/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/buildkite/interpolate/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/buildkite/roko/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/buildkite/roko/LICENSE.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/cenkalti/backoff/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/cenkalti/backoff/v3/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/cespare/xxhash/v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/cespare/xxhash/v2/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/chrismellard/docker-credential-acr-env/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/chrismellard/docker-credential-acr-env/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/clbanning/mxj/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/clbanning/mxj/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/cloudflare/circl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/cloudflare/circl/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/common-nighthawk/go-figure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/common-nighthawk/go-figure/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/containerd/stargz-snapshotter/estargz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/containerd/stargz-snapshotter/estargz/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/coreos/go-oidc/v3/oidc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/coreos/go-oidc/v3/oidc/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/coreos/go-oidc/v3/oidc/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/coreos/go-oidc/v3/oidc/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/cyberphone/json-canonicalization/go/src/webpki.org/jsoncanonicalizer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/cyberphone/json-canonicalization/go/src/webpki.org/jsoncanonicalizer/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/davecgh/go-spew/spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/davecgh/go-spew/spew/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/digitorus/pkcs7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/digitorus/pkcs7/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/digitorus/timestamp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/digitorus/timestamp/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/dimchansky/utfbom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/dimchansky/utfbom/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/docker/cli/cli/config/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/docker/cli/cli/config/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/docker/cli/cli/config/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/docker/cli/cli/config/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/docker/distribution/registry/client/auth/challenge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/docker/distribution/registry/client/auth/challenge/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/docker/docker-credential-helpers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/docker/docker-credential-helpers/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/dustin/go-humanize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/dustin/go-humanize/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/emicklei/go-restful/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/emicklei/go-restful/v3/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/felixge/httpsnoop/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/felixge/httpsnoop/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/fxamacker/cbor/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/fxamacker/cbor/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-chi/chi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-chi/chi/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-jose/go-jose/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-jose/go-jose/v3/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-jose/go-jose/v3/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-jose/go-jose/v3/json/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-jose/go-jose/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-jose/go-jose/v4/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-jose/go-jose/v4/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-jose/go-jose/v4/json/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/analysis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/analysis/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/errors/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/jsonpointer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/jsonpointer/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/jsonreference/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/jsonreference/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/loads/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/loads/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/runtime/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/runtime/middleware/denco/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/runtime/middleware/denco/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/spec/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/strfmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/strfmt/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-openapi/validate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-openapi/validate/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/.gitignore -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/AUTHORS -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/CHANGELOG.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/atomic_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/atomic_bool.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/atomic_bool_go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/atomic_bool_go118.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/auth.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/buffer.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/collations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/collations.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/conncheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/conncheck.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/conncheck_dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/conncheck_dummy.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/connection.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/connector.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/const.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/driver.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/dsn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/dsn.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/errors.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/fields.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/infile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/infile.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/nulltime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/nulltime.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/packets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/packets.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/result.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/rows.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/statement.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/transaction.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/go-sql-driver/mysql/utils.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/golang-jwt/jwt/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/golang-jwt/jwt/v4/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/golang-jwt/jwt/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/golang-jwt/jwt/v5/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/golang/groupcache/lru/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/golang/groupcache/lru/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/golang/protobuf/proto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/golang/protobuf/proto/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/golang/snappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/golang/snappy/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/certificate-transparency-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/google/certificate-transparency-go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/gnostic-models/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/google/gnostic-models/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/go-cmp/cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/google/go-cmp/cmp/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/go-containerregistry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/google/go-containerregistry/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/go-github/v55/github/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/google/go-github/v55/github/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/go-querystring/query/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/google/go-querystring/query/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/s2a-go/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/google/s2a-go/LICENSE.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/tink/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/google/tink/go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/trillian/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/google/trillian/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/googleapis/enterprise-certificate-proxy/client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/googleapis/enterprise-certificate-proxy/client/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/googleapis/gax-go/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/googleapis/gax-go/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/grpc-ecosystem/grpc-gateway/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/grpc-ecosystem/grpc-gateway/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/errwrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/errwrap/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/errwrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/errwrap/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/errwrap/errwrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/errwrap/errwrap.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/cleanhttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/cleanhttp.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/doc.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-cleanhttp/handlers.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/Makefile -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/append.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/flatten.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/flatten.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/format.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/group.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/multierror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/multierror.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/prefix.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-multierror/sort.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | *.test 4 | .vscode/ -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/.go-version: -------------------------------------------------------------------------------- 1 | 1.22.2 2 | -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/CHANGELOG.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hashicorp/go-retryablehttp-maintainers 2 | -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/Makefile -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/cert_error_go119.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/cert_error_go119.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/cert_error_go120.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/cert_error_go120.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/client.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/roundtripper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/roundtripper.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/.travis.yml -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/Makefile -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/doc.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/rootcerts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/rootcerts.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/rootcerts_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/rootcerts_base.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/rootcerts_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-rootcerts/rootcerts_darwin.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-secure-stdlib/parseutil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-secure-stdlib/parseutil/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-secure-stdlib/parseutil/parsepath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-secure-stdlib/parseutil/parsepath.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-secure-stdlib/parseutil/parseutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-secure-stdlib/parseutil/parseutil.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-secure-stdlib/strutil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-secure-stdlib/strutil/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-secure-stdlib/strutil/strutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-secure-stdlib/strutil/strutil.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/.gitignore -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/GNUmakefile -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/doc.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ifaddr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ifaddr.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ifaddrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ifaddrs.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ifattr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ifattr.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipaddr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipaddr.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipaddrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipaddrs.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipv4addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipv4addr.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipv6addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/ipv6addr.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/rfc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/rfc.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_android.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_bsd.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_default.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_linux.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_solaris.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_test_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_test_windows.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_windows.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/sockaddr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/sockaddr.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/sockaddrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/sockaddrs.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/unixsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/unixsock.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/.gitignore -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/.travis.yml -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/appveyor.yml -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/decoder.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/ast/ast.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/ast/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/ast/walk.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/parser/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/parser/error.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/parser/parser.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/printer/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/printer/nodes.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/printer/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/printer/printer.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/scanner/scanner.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/strconv/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/strconv/quote.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/token/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/token/position.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/hcl/token/token.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/parser/flatten.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/parser/flatten.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/parser/parser.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/scanner/scanner.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/token/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/token/position.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/json/token/token.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/.copywrite.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/.copywrite.hcl -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/auth.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/auth_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/auth_token.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/client.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/help.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/kv.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/kv_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/kv_v1.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/kv_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/kv_v2.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/lifetime_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/lifetime_watcher.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/logical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/logical.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/output_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/output_policy.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/output_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/output_string.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/plugin_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/plugin_helpers.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/plugin_runtime_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/plugin_runtime_types.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/plugin_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/plugin_types.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/pluginruntimetype_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/pluginruntimetype_enumer.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/renewbehavior_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/renewbehavior_enumer.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/replication_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/replication_status.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/request.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/response.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/secret.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/ssh.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/ssh_agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/ssh_agent.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sudo_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sudo_paths.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_audit.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_auth.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_capabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_capabilities.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_config_cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_config_cors.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_generate_root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_generate_root.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_hastatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_hastatus.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_health.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_init.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_leader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_leader.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_leases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_leases.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_mfa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_mfa.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_monitor.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_mounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_mounts.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_plugins.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_plugins_runtimes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_plugins_runtimes.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_policy.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_raft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_raft.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_rekey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_rekey.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_rotate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_rotate.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_seal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_seal.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_stepdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_stepdown.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_ui_custom_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/hashicorp/vault/api/sys_ui_custom_message.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/in-toto/in-toto-golang/in_toto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/in-toto/in-toto-golang/in_toto/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/jedisct1/go-minisign/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/jedisct1/go-minisign/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/jellydator/ttlcache/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/jellydator/ttlcache/v3/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/jmespath/go-jmespath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/jmespath/go-jmespath/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/jmespath/go-jmespath/NOTICE: -------------------------------------------------------------------------------- 1 | go-jmespath 2 | Copyright 2015 James Saryerwinnie 3 | -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/josharian/intern/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/josharian/intern/license.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/kelseyhightower/envconfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/kelseyhightower/envconfig/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/klauspost/compress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/klauspost/compress/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/klauspost/compress/internal/snapref/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/klauspost/compress/internal/snapref/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/klauspost/compress/zstd/internal/xxhash/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/klauspost/compress/zstd/internal/xxhash/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/kylelemons/godebug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/kylelemons/godebug/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/core/challenges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/core/challenges.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/core/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/core/interfaces.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/core/objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/core/objects.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/core/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/core/util.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/goodkey/blocked.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/goodkey/blocked.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/goodkey/good_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/goodkey/good_key.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/goodkey/weak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/goodkey/weak.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/identifier/identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/identifier/identifier.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/probs/probs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/probs/probs.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/revocation/reasons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/revocation/reasons.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/strictyaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/letsencrypt/boulder/strictyaml/yaml.go -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/magiconair/properties/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/magiconair/properties/LICENSE.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/mailru/easyjson/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/mitchellh/go-homedir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/mitchellh/go-homedir/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/mitchellh/mapstructure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/mitchellh/mapstructure/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/modern-go/concurrent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/modern-go/concurrent/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/modern-go/reflect2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/modern-go/reflect2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/mozillazg/docker-credential-acr-helper/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/mozillazg/docker-credential-acr-helper/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/munnerz/goautoneg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/munnerz/goautoneg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/nozzle/throttler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/nozzle/throttler/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/oklog/ulid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/oklog/ulid/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/oleiade/reflections/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/oleiade/reflections/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/opencontainers/go-digest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/opencontainers/go-digest/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/opencontainers/image-spec/specs-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/opencontainers/image-spec/specs-go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/opentracing/opentracing-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/opentracing/opentracing-go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/pelletier/go-toml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/pelletier/go-toml/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/pkg/browser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/pkg/browser/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/client_golang/internal/github.com/golang/gddo/httputil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/client_golang/internal/github.com/golang/gddo/httputil/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/client_golang/prometheus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/client_golang/prometheus/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/client_golang/prometheus/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/client_golang/prometheus/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/client_model/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/client_model/go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/client_model/go/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/client_model/go/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/ryanuber/go-glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/ryanuber/go-glob/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sagikazarmark/slog-shim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sagikazarmark/slog-shim/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sassoftware/relic/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sassoftware/relic/lib/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/secure-systems-lab/go-securesystemslib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/secure-systems-lab/go-securesystemslib/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/segmentio/ksuid/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/segmentio/ksuid/LICENSE.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/shibumi/go-pathspec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/shibumi/go-pathspec/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/cosign/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/cosign/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/fulcio/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/fulcio/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/protobuf-specs/gen/pb-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/protobuf-specs/gen/pb-go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/rekor/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/rekor/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/sigstore-go/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/sigstore-go/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/sigstore/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/sigstore/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/sigstore/pkg/signature/kms/aws/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/sigstore/pkg/signature/kms/aws/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/sigstore/pkg/signature/kms/azure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/sigstore/pkg/signature/kms/azure/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/sigstore/pkg/signature/kms/gcp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/sigstore/pkg/signature/kms/gcp/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/sigstore/pkg/signature/kms/hashivault/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/sigstore/pkg/signature/kms/hashivault/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sigstore/timestamp-authority/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sigstore/timestamp-authority/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/skratchdot/open-golang/open/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/skratchdot/open-golang/open/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/spf13/afero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/spf13/afero/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/spiffe/go-spiffe/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/spiffe/go-spiffe/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/subosito/gotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/subosito/gotenv/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/syndtr/goleveldb/leveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/syndtr/goleveldb/leveldb/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/theupdateframework/go-tuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/theupdateframework/go-tuf/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/theupdateframework/go-tuf/v2/metadata/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/theupdateframework/go-tuf/v2/metadata/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/theupdateframework/go-tuf/v2/metadata/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/theupdateframework/go-tuf/v2/metadata/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/titanous/rocacheck/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/titanous/rocacheck/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/tjfoc/gmsm/sm3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/tjfoc/gmsm/sm3/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/transparency-dev/merkle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/transparency-dev/merkle/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/vbatts/tar-split/archive/tar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/vbatts/tar-split/archive/tar/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/x448/float16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/x448/float16/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/xanzy/go-gitlab/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/xanzy/go-gitlab/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/github.com/zeebo/errs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/github.com/zeebo/errs/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.mongodb.org/mongo-driver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/go.mongodb.org/mongo-driver/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/metric/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/metric/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/trace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/go.opentelemetry.io/otel/trace/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.step.sm/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/go.step.sm/crypto/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.step.sm/crypto/internal/bcrypt_pbkdf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/go.step.sm/crypto/internal/bcrypt_pbkdf/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.step.sm/crypto/internal/utils/utfbom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/go.step.sm/crypto/internal/utils/utfbom/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/mod/sumdb/note/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/golang.org/x/mod/sumdb/note/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/golang.org/x/time/rate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/golang.org/x/time/rate/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/google.golang.org/api/internal/third_party/uritemplates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/google.golang.org/api/internal/third_party/uritemplates/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/google.golang.org/genproto/googleapis/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/google.golang.org/genproto/googleapis/api/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/google.golang.org/genproto/googleapis/rpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/google.golang.org/genproto/googleapis/rpc/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/google.golang.org/grpc/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/google.golang.org/grpc/NOTICE.txt -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/apimachinery/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/k8s.io/apimachinery/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/apimachinery/third_party/forked/golang/reflect/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/k8s.io/apimachinery/third_party/forked/golang/reflect/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/kube-openapi/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/k8s.io/kube-openapi/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/kube-openapi/pkg/internal/third_party/go-json-experiment/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/k8s.io/kube-openapi/pkg/internal/third_party/go-json-experiment/json/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/kube-openapi/pkg/validation/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/k8s.io/kube-openapi/pkg/validation/spec/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/k8s.io/utils/internal/third_party/forked/golang/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/k8s.io/utils/internal/third_party/forked/golang/net/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/knative.dev/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/knative.dev/pkg/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/sigs.k8s.io/release-utils/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/sigs.k8s.io/release-utils/version/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/sigs.k8s.io/structured-merge-diff/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/sigs.k8s.io/structured-merge-diff/v4/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/sigs.k8s.io/yaml/goyaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/sigs.k8s.io/yaml/goyaml.v2/LICENSE -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE/sigs.k8s.io/yaml/goyaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/scaffolding/HEAD/third_party/VENDOR-LICENSE/sigs.k8s.io/yaml/goyaml.v2/NOTICE --------------------------------------------------------------------------------