├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── release-checklist.md ├── dependabot.yml └── workflows │ ├── container-release.yml │ ├── generate.yml │ ├── googleapis-update.yml │ ├── gradle-wrapper-validation.yml │ ├── java-build.yml │ ├── java-release.yml │ ├── protobuf-update.yml │ ├── python-build.yml │ ├── python-release.yml │ ├── ruby-build.yml │ ├── ruby-release.yml │ ├── rust-build.yml │ ├── rust-release.yml │ ├── typescript-build.yml │ └── typescript-publish.yml ├── .gitignore ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── COPYRIGHT.txt ├── LICENSE ├── Makefile ├── README.md ├── RELEASE.md ├── gen ├── pb-go │ ├── bundle │ │ └── v1 │ │ │ └── sigstore_bundle.pb.go │ ├── common │ │ └── v1 │ │ │ └── sigstore_common.pb.go │ ├── dsse │ │ └── envelope.pb.go │ ├── events │ │ └── v1 │ │ │ └── events.pb.go │ ├── rekor │ │ └── v1 │ │ │ └── sigstore_rekor.pb.go │ ├── trustroot │ │ └── v1 │ │ │ └── sigstore_trustroot.pb.go │ └── verification │ │ └── v1 │ │ └── sigstore_verification.pb.go ├── pb-python │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── pyproject.toml │ └── sigstore_protobuf_specs │ │ ├── __init__.py │ │ ├── dev │ │ ├── __init__.py │ │ └── sigstore │ │ │ ├── __init__.py │ │ │ ├── bundle │ │ │ ├── __init__.py │ │ │ └── v1 │ │ │ │ └── __init__.py │ │ │ ├── common │ │ │ ├── __init__.py │ │ │ └── v1 │ │ │ │ └── __init__.py │ │ │ ├── events │ │ │ ├── __init__.py │ │ │ └── v1 │ │ │ │ └── __init__.py │ │ │ ├── rekor │ │ │ ├── __init__.py │ │ │ ├── v1 │ │ │ │ └── __init__.py │ │ │ └── v2 │ │ │ │ └── __init__.py │ │ │ ├── trustroot │ │ │ ├── __init__.py │ │ │ └── v1 │ │ │ │ └── __init__.py │ │ │ └── verification │ │ │ ├── __init__.py │ │ │ └── v1 │ │ │ └── __init__.py │ │ ├── google │ │ ├── __init__.py │ │ └── api │ │ │ └── __init__.py │ │ ├── io │ │ ├── __init__.py │ │ └── intoto │ │ │ └── __init__.py │ │ └── py.typed ├── pb-ruby │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── envelope_pb.rb │ │ ├── events_pb.rb │ │ ├── rekor │ │ │ └── v2 │ │ │ │ ├── dsse_pb.rb │ │ │ │ ├── entry_pb.rb │ │ │ │ ├── hashedrekord_pb.rb │ │ │ │ └── verifier_pb.rb │ │ ├── sigstore_bundle_pb.rb │ │ ├── sigstore_common_pb.rb │ │ ├── sigstore_protobuf_specs.rb │ │ ├── sigstore_protobuf_specs │ │ │ └── version.rb │ │ ├── sigstore_rekor_pb.rb │ │ ├── sigstore_trustroot_pb.rb │ │ └── sigstore_verification_pb.rb │ └── sigstore_protobuf_specs.gemspec ├── pb-rust │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── sigstore-protobuf-specs-codegen │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── sigstore-protobuf-specs-derive │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── sigstore-protobuf-specs │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── assets │ │ ├── a.txt │ │ └── a.txt.sigstore │ │ ├── src │ │ ├── generated │ │ │ ├── dev.sigstore.bundle.v1.rs │ │ │ ├── dev.sigstore.common.v1.rs │ │ │ ├── dev.sigstore.events.v1.rs │ │ │ ├── dev.sigstore.rekor.v1.rs │ │ │ ├── dev.sigstore.rekor.v2.rs │ │ │ ├── dev.sigstore.trustroot.v1.rs │ │ │ ├── dev.sigstore.verification.v1.rs │ │ │ ├── file_descriptor_set.bin │ │ │ ├── google.api.rs │ │ │ ├── io.intoto.rs │ │ │ └── mod.rs │ │ └── lib.rs │ │ └── tests │ │ ├── integration.rs │ │ └── unit.rs └── pb-typescript │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── __generated__ │ │ ├── envelope.ts │ │ ├── events.ts │ │ ├── google │ │ │ ├── api │ │ │ │ └── field_behavior.ts │ │ │ └── protobuf │ │ │ │ ├── any.ts │ │ │ │ ├── descriptor.ts │ │ │ │ └── timestamp.ts │ │ ├── rekor │ │ │ └── v2 │ │ │ │ ├── dsse.ts │ │ │ │ ├── entry.ts │ │ │ │ ├── hashedrekord.ts │ │ │ │ └── verifier.ts │ │ ├── sigstore_bundle.ts │ │ ├── sigstore_common.ts │ │ ├── sigstore_rekor.ts │ │ ├── sigstore_trustroot.ts │ │ └── sigstore_verification.ts │ ├── index.ts │ └── rekor │ │ └── v2 │ │ └── index.ts │ └── tsconfig.json ├── go.mod ├── go.sum ├── java ├── .gitattributes ├── .gitignore ├── README.md ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── protoc-builder ├── Dockerfile.go ├── Dockerfile.protoc ├── Dockerfile.python ├── Dockerfile.ruby ├── Dockerfile.rust ├── Dockerfile.services ├── Dockerfile.typescript ├── hack │ ├── Dockerfile.protobuf │ ├── dev-requirements.txt │ ├── go │ │ ├── go.mod │ │ └── go.sum │ ├── package-lock.json │ └── package.json └── versions.mk ├── protos ├── envelope.proto ├── events.proto ├── sigstore_bundle.proto ├── sigstore_common.proto ├── sigstore_rekor.proto ├── sigstore_trustroot.proto └── sigstore_verification.proto └── service-protos ├── README.md ├── rekor └── v2 │ ├── dsse.proto │ ├── entry.proto │ ├── hashedrekord.proto │ └── verifier.proto └── sync-rekor-tiles.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/release-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/ISSUE_TEMPLATE/release-checklist.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/container-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/container-release.yml -------------------------------------------------------------------------------- /.github/workflows/generate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/generate.yml -------------------------------------------------------------------------------- /.github/workflows/googleapis-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/googleapis-update.yml -------------------------------------------------------------------------------- /.github/workflows/gradle-wrapper-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/gradle-wrapper-validation.yml -------------------------------------------------------------------------------- /.github/workflows/java-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/java-build.yml -------------------------------------------------------------------------------- /.github/workflows/java-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/java-release.yml -------------------------------------------------------------------------------- /.github/workflows/protobuf-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/protobuf-update.yml -------------------------------------------------------------------------------- /.github/workflows/python-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/python-build.yml -------------------------------------------------------------------------------- /.github/workflows/python-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/python-release.yml -------------------------------------------------------------------------------- /.github/workflows/ruby-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/ruby-build.yml -------------------------------------------------------------------------------- /.github/workflows/ruby-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/ruby-release.yml -------------------------------------------------------------------------------- /.github/workflows/rust-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/rust-build.yml -------------------------------------------------------------------------------- /.github/workflows/rust-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/rust-release.yml -------------------------------------------------------------------------------- /.github/workflows/typescript-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/typescript-build.yml -------------------------------------------------------------------------------- /.github/workflows/typescript-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/.github/workflows/typescript-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @sigstore/protobuf-specs-codeowners 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/RELEASE.md -------------------------------------------------------------------------------- /gen/pb-go/bundle/v1/sigstore_bundle.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-go/bundle/v1/sigstore_bundle.pb.go -------------------------------------------------------------------------------- /gen/pb-go/common/v1/sigstore_common.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-go/common/v1/sigstore_common.pb.go -------------------------------------------------------------------------------- /gen/pb-go/dsse/envelope.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-go/dsse/envelope.pb.go -------------------------------------------------------------------------------- /gen/pb-go/events/v1/events.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-go/events/v1/events.pb.go -------------------------------------------------------------------------------- /gen/pb-go/rekor/v1/sigstore_rekor.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-go/rekor/v1/sigstore_rekor.pb.go -------------------------------------------------------------------------------- /gen/pb-go/trustroot/v1/sigstore_trustroot.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-go/trustroot/v1/sigstore_trustroot.pb.go -------------------------------------------------------------------------------- /gen/pb-go/verification/v1/sigstore_verification.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-go/verification/v1/sigstore_verification.pb.go -------------------------------------------------------------------------------- /gen/pb-python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-python/LICENSE -------------------------------------------------------------------------------- /gen/pb-python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-python/Makefile -------------------------------------------------------------------------------- /gen/pb-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-python/README.md -------------------------------------------------------------------------------- /gen/pb-python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-python/pyproject.toml -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/bundle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/bundle/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-python/sigstore_protobuf_specs/dev/sigstore/bundle/v1/__init__.py -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/common/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-python/sigstore_protobuf_specs/dev/sigstore/common/v1/__init__.py -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/events/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-python/sigstore_protobuf_specs/dev/sigstore/events/v1/__init__.py -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/rekor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/rekor/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-python/sigstore_protobuf_specs/dev/sigstore/rekor/v1/__init__.py -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/rekor/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-python/sigstore_protobuf_specs/dev/sigstore/rekor/v2/__init__.py -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/trustroot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/trustroot/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-python/sigstore_protobuf_specs/dev/sigstore/trustroot/v1/__init__.py -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/verification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/dev/sigstore/verification/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-python/sigstore_protobuf_specs/dev/sigstore/verification/v1/__init__.py -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/google/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/google/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-python/sigstore_protobuf_specs/google/api/__init__.py -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/io/intoto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-python/sigstore_protobuf_specs/io/intoto/__init__.py -------------------------------------------------------------------------------- /gen/pb-python/sigstore_protobuf_specs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen/pb-ruby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/LICENSE -------------------------------------------------------------------------------- /gen/pb-ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/README.md -------------------------------------------------------------------------------- /gen/pb-ruby/lib/envelope_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/lib/envelope_pb.rb -------------------------------------------------------------------------------- /gen/pb-ruby/lib/events_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/lib/events_pb.rb -------------------------------------------------------------------------------- /gen/pb-ruby/lib/rekor/v2/dsse_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/lib/rekor/v2/dsse_pb.rb -------------------------------------------------------------------------------- /gen/pb-ruby/lib/rekor/v2/entry_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/lib/rekor/v2/entry_pb.rb -------------------------------------------------------------------------------- /gen/pb-ruby/lib/rekor/v2/hashedrekord_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/lib/rekor/v2/hashedrekord_pb.rb -------------------------------------------------------------------------------- /gen/pb-ruby/lib/rekor/v2/verifier_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/lib/rekor/v2/verifier_pb.rb -------------------------------------------------------------------------------- /gen/pb-ruby/lib/sigstore_bundle_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/lib/sigstore_bundle_pb.rb -------------------------------------------------------------------------------- /gen/pb-ruby/lib/sigstore_common_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/lib/sigstore_common_pb.rb -------------------------------------------------------------------------------- /gen/pb-ruby/lib/sigstore_protobuf_specs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/lib/sigstore_protobuf_specs.rb -------------------------------------------------------------------------------- /gen/pb-ruby/lib/sigstore_protobuf_specs/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/lib/sigstore_protobuf_specs/version.rb -------------------------------------------------------------------------------- /gen/pb-ruby/lib/sigstore_rekor_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/lib/sigstore_rekor_pb.rb -------------------------------------------------------------------------------- /gen/pb-ruby/lib/sigstore_trustroot_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/lib/sigstore_trustroot_pb.rb -------------------------------------------------------------------------------- /gen/pb-ruby/lib/sigstore_verification_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/lib/sigstore_verification_pb.rb -------------------------------------------------------------------------------- /gen/pb-ruby/sigstore_protobuf_specs.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-ruby/sigstore_protobuf_specs.gemspec -------------------------------------------------------------------------------- /gen/pb-rust/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /gen/pb-rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/Cargo.lock -------------------------------------------------------------------------------- /gen/pb-rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/Cargo.toml -------------------------------------------------------------------------------- /gen/pb-rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/README.md -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs-codegen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs-codegen/Cargo.toml -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs-codegen/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs-codegen/src/main.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs-derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs-derive/Cargo.toml -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs-derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs-derive/src/lib.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/Cargo.lock -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/Cargo.toml -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/assets/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/assets/a.txt -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/assets/a.txt.sigstore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/assets/a.txt.sigstore -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.bundle.v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.bundle.v1.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.common.v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.common.v1.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.events.v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.events.v1.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.rekor.v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.rekor.v1.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.rekor.v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.rekor.v2.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.trustroot.v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.trustroot.v1.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.verification.v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/src/generated/dev.sigstore.verification.v1.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/src/generated/file_descriptor_set.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/src/generated/file_descriptor_set.bin -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/src/generated/google.api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/src/generated/google.api.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/src/generated/io.intoto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/src/generated/io.intoto.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/src/generated/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/src/generated/mod.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/src/lib.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/tests/integration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/tests/integration.rs -------------------------------------------------------------------------------- /gen/pb-rust/sigstore-protobuf-specs/tests/unit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-rust/sigstore-protobuf-specs/tests/unit.rs -------------------------------------------------------------------------------- /gen/pb-typescript/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /gen/pb-typescript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/LICENSE -------------------------------------------------------------------------------- /gen/pb-typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/README.md -------------------------------------------------------------------------------- /gen/pb-typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/package-lock.json -------------------------------------------------------------------------------- /gen/pb-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/package.json -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/envelope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/envelope.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/events.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/google/api/field_behavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/google/api/field_behavior.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/google/protobuf/any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/google/protobuf/any.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/google/protobuf/descriptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/google/protobuf/descriptor.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/google/protobuf/timestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/google/protobuf/timestamp.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/rekor/v2/dsse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/rekor/v2/dsse.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/rekor/v2/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/rekor/v2/entry.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/rekor/v2/hashedrekord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/rekor/v2/hashedrekord.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/rekor/v2/verifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/rekor/v2/verifier.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/sigstore_bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/sigstore_bundle.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/sigstore_common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/sigstore_common.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/sigstore_rekor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/sigstore_rekor.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/sigstore_trustroot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/sigstore_trustroot.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/__generated__/sigstore_verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/__generated__/sigstore_verification.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/index.ts -------------------------------------------------------------------------------- /gen/pb-typescript/src/rekor/v2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/src/rekor/v2/index.ts -------------------------------------------------------------------------------- /gen/pb-typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/gen/pb-typescript/tsconfig.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/go.sum -------------------------------------------------------------------------------- /java/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/java/.gitattributes -------------------------------------------------------------------------------- /java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/java/.gitignore -------------------------------------------------------------------------------- /java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/java/README.md -------------------------------------------------------------------------------- /java/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/java/build.gradle.kts -------------------------------------------------------------------------------- /java/gradle.properties: -------------------------------------------------------------------------------- 1 | group=dev.sigstore 2 | version=SNAPSHOT 3 | -------------------------------------------------------------------------------- /java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/java/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/java/gradlew -------------------------------------------------------------------------------- /java/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/java/gradlew.bat -------------------------------------------------------------------------------- /java/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/java/settings.gradle.kts -------------------------------------------------------------------------------- /protoc-builder/Dockerfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/Dockerfile.go -------------------------------------------------------------------------------- /protoc-builder/Dockerfile.protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/Dockerfile.protoc -------------------------------------------------------------------------------- /protoc-builder/Dockerfile.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/Dockerfile.python -------------------------------------------------------------------------------- /protoc-builder/Dockerfile.ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/Dockerfile.ruby -------------------------------------------------------------------------------- /protoc-builder/Dockerfile.rust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/Dockerfile.rust -------------------------------------------------------------------------------- /protoc-builder/Dockerfile.services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/Dockerfile.services -------------------------------------------------------------------------------- /protoc-builder/Dockerfile.typescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/Dockerfile.typescript -------------------------------------------------------------------------------- /protoc-builder/hack/Dockerfile.protobuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/hack/Dockerfile.protobuf -------------------------------------------------------------------------------- /protoc-builder/hack/dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/hack/dev-requirements.txt -------------------------------------------------------------------------------- /protoc-builder/hack/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/hack/go/go.mod -------------------------------------------------------------------------------- /protoc-builder/hack/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/hack/go/go.sum -------------------------------------------------------------------------------- /protoc-builder/hack/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/hack/package-lock.json -------------------------------------------------------------------------------- /protoc-builder/hack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/hack/package.json -------------------------------------------------------------------------------- /protoc-builder/versions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protoc-builder/versions.mk -------------------------------------------------------------------------------- /protos/envelope.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protos/envelope.proto -------------------------------------------------------------------------------- /protos/events.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protos/events.proto -------------------------------------------------------------------------------- /protos/sigstore_bundle.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protos/sigstore_bundle.proto -------------------------------------------------------------------------------- /protos/sigstore_common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protos/sigstore_common.proto -------------------------------------------------------------------------------- /protos/sigstore_rekor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protos/sigstore_rekor.proto -------------------------------------------------------------------------------- /protos/sigstore_trustroot.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protos/sigstore_trustroot.proto -------------------------------------------------------------------------------- /protos/sigstore_verification.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/protos/sigstore_verification.proto -------------------------------------------------------------------------------- /service-protos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/service-protos/README.md -------------------------------------------------------------------------------- /service-protos/rekor/v2/dsse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/service-protos/rekor/v2/dsse.proto -------------------------------------------------------------------------------- /service-protos/rekor/v2/entry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/service-protos/rekor/v2/entry.proto -------------------------------------------------------------------------------- /service-protos/rekor/v2/hashedrekord.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/service-protos/rekor/v2/hashedrekord.proto -------------------------------------------------------------------------------- /service-protos/rekor/v2/verifier.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/service-protos/rekor/v2/verifier.proto -------------------------------------------------------------------------------- /service-protos/sync-rekor-tiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/protobuf-specs/HEAD/service-protos/sync-rekor-tiles.sh --------------------------------------------------------------------------------