├── .github ├── codecov.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── examples.yml │ ├── linting.yml │ └── tests.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yaml ├── .minder.yaml ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── examples ├── README.md ├── cli │ ├── README.md │ ├── tuf-client │ │ ├── README.md │ │ ├── cmd │ │ │ ├── get.go │ │ │ ├── init.go │ │ │ ├── reset.go │ │ │ └── root.go │ │ └── main.go │ └── tuf │ │ ├── README.md │ │ ├── cmd │ │ ├── init.go │ │ └── root.go │ │ └── main.go ├── client │ └── client_example.go ├── multirepo │ ├── client │ │ ├── README.md │ │ ├── client_example.go │ │ └── root.json │ └── repository │ │ ├── README.md │ │ ├── generate_metadata.go │ │ ├── metadata │ │ ├── 1.root.json │ │ ├── 1.snapshot.json │ │ ├── 1.targets.json │ │ └── timestamp.json │ │ └── targets │ │ ├── 9bb72b3c684f4e489e7fdce1afabff64b4e3f4b7877ac8cb78a684c2c65fc6d8.map.json │ │ ├── map.json │ │ ├── sigstore-tuf-root │ │ ├── e2a930b2d1d4053dd56e8faf66fd113658545d522e35d222ccf58fea87ccccf4.root.json │ │ └── root.json │ │ └── staging │ │ ├── e2a930b2d1d4053dd56e8faf66fd113658545d522e35d222ccf58fea87ccccf4.root.json │ │ └── root.json └── repository │ └── basic_repository.go ├── go.mod ├── go.sum ├── metadata ├── config │ ├── config.go │ └── config_test.go ├── errors.go ├── fetcher │ ├── fetcher.go │ └── fetcher_test.go ├── keys.go ├── logger.go ├── logger_test.go ├── marshal.go ├── metadata.go ├── metadata_api_test.go ├── metadata_test.go ├── multirepo │ └── multirepo.go ├── repository │ ├── repository.go │ └── repository_test.go ├── trustedmetadata │ ├── trustedmetadata.go │ └── trustedmetadata_test.go ├── types.go └── updater │ ├── updater.go │ ├── updater_consistent_snapshot_test.go │ └── updater_top_level_update_test.go └── testutils ├── repository_data ├── keystore │ ├── delegation_key │ ├── delegation_key.pub │ ├── root_key │ ├── root_key.pub │ ├── root_key2 │ ├── root_key2.pub │ ├── snapshot_key │ ├── snapshot_key.pub │ ├── targets_key │ ├── targets_key.pub │ ├── timestamp_key │ └── timestamp_key.pub └── repository │ ├── metadata │ ├── 1.root.json │ ├── role1.json │ ├── role2.json │ ├── root.json │ ├── snapshot.json │ ├── targets.json │ └── timestamp.json │ └── targets │ ├── file1.txt │ ├── file2.txt │ └── file3.txt ├── simulator ├── repository_simulator.go └── repository_simulator_setup.go └── testutils └── setup.go /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/.github/workflows/examples.yml -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | dist/ 3 | .idea/ 4 | *~ 5 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.minder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/.minder.yaml -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/cli/README.md -------------------------------------------------------------------------------- /examples/cli/tuf-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/cli/tuf-client/README.md -------------------------------------------------------------------------------- /examples/cli/tuf-client/cmd/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/cli/tuf-client/cmd/get.go -------------------------------------------------------------------------------- /examples/cli/tuf-client/cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/cli/tuf-client/cmd/init.go -------------------------------------------------------------------------------- /examples/cli/tuf-client/cmd/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/cli/tuf-client/cmd/reset.go -------------------------------------------------------------------------------- /examples/cli/tuf-client/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/cli/tuf-client/cmd/root.go -------------------------------------------------------------------------------- /examples/cli/tuf-client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/cli/tuf-client/main.go -------------------------------------------------------------------------------- /examples/cli/tuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/cli/tuf/README.md -------------------------------------------------------------------------------- /examples/cli/tuf/cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/cli/tuf/cmd/init.go -------------------------------------------------------------------------------- /examples/cli/tuf/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/cli/tuf/cmd/root.go -------------------------------------------------------------------------------- /examples/cli/tuf/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/cli/tuf/main.go -------------------------------------------------------------------------------- /examples/client/client_example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/client/client_example.go -------------------------------------------------------------------------------- /examples/multirepo/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/client/README.md -------------------------------------------------------------------------------- /examples/multirepo/client/client_example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/client/client_example.go -------------------------------------------------------------------------------- /examples/multirepo/client/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/client/root.json -------------------------------------------------------------------------------- /examples/multirepo/repository/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/repository/README.md -------------------------------------------------------------------------------- /examples/multirepo/repository/generate_metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/repository/generate_metadata.go -------------------------------------------------------------------------------- /examples/multirepo/repository/metadata/1.root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/repository/metadata/1.root.json -------------------------------------------------------------------------------- /examples/multirepo/repository/metadata/1.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/repository/metadata/1.snapshot.json -------------------------------------------------------------------------------- /examples/multirepo/repository/metadata/1.targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/repository/metadata/1.targets.json -------------------------------------------------------------------------------- /examples/multirepo/repository/metadata/timestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/repository/metadata/timestamp.json -------------------------------------------------------------------------------- /examples/multirepo/repository/targets/9bb72b3c684f4e489e7fdce1afabff64b4e3f4b7877ac8cb78a684c2c65fc6d8.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/repository/targets/9bb72b3c684f4e489e7fdce1afabff64b4e3f4b7877ac8cb78a684c2c65fc6d8.map.json -------------------------------------------------------------------------------- /examples/multirepo/repository/targets/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/repository/targets/map.json -------------------------------------------------------------------------------- /examples/multirepo/repository/targets/sigstore-tuf-root/e2a930b2d1d4053dd56e8faf66fd113658545d522e35d222ccf58fea87ccccf4.root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/repository/targets/sigstore-tuf-root/e2a930b2d1d4053dd56e8faf66fd113658545d522e35d222ccf58fea87ccccf4.root.json -------------------------------------------------------------------------------- /examples/multirepo/repository/targets/sigstore-tuf-root/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/repository/targets/sigstore-tuf-root/root.json -------------------------------------------------------------------------------- /examples/multirepo/repository/targets/staging/e2a930b2d1d4053dd56e8faf66fd113658545d522e35d222ccf58fea87ccccf4.root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/repository/targets/staging/e2a930b2d1d4053dd56e8faf66fd113658545d522e35d222ccf58fea87ccccf4.root.json -------------------------------------------------------------------------------- /examples/multirepo/repository/targets/staging/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/multirepo/repository/targets/staging/root.json -------------------------------------------------------------------------------- /examples/repository/basic_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/examples/repository/basic_repository.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/go.sum -------------------------------------------------------------------------------- /metadata/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/config/config.go -------------------------------------------------------------------------------- /metadata/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/config/config_test.go -------------------------------------------------------------------------------- /metadata/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/errors.go -------------------------------------------------------------------------------- /metadata/fetcher/fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/fetcher/fetcher.go -------------------------------------------------------------------------------- /metadata/fetcher/fetcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/fetcher/fetcher_test.go -------------------------------------------------------------------------------- /metadata/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/keys.go -------------------------------------------------------------------------------- /metadata/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/logger.go -------------------------------------------------------------------------------- /metadata/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/logger_test.go -------------------------------------------------------------------------------- /metadata/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/marshal.go -------------------------------------------------------------------------------- /metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/metadata.go -------------------------------------------------------------------------------- /metadata/metadata_api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/metadata_api_test.go -------------------------------------------------------------------------------- /metadata/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/metadata_test.go -------------------------------------------------------------------------------- /metadata/multirepo/multirepo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/multirepo/multirepo.go -------------------------------------------------------------------------------- /metadata/repository/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/repository/repository.go -------------------------------------------------------------------------------- /metadata/repository/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/repository/repository_test.go -------------------------------------------------------------------------------- /metadata/trustedmetadata/trustedmetadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/trustedmetadata/trustedmetadata.go -------------------------------------------------------------------------------- /metadata/trustedmetadata/trustedmetadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/trustedmetadata/trustedmetadata_test.go -------------------------------------------------------------------------------- /metadata/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/types.go -------------------------------------------------------------------------------- /metadata/updater/updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/updater/updater.go -------------------------------------------------------------------------------- /metadata/updater/updater_consistent_snapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/updater/updater_consistent_snapshot_test.go -------------------------------------------------------------------------------- /metadata/updater/updater_top_level_update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/metadata/updater/updater_top_level_update_test.go -------------------------------------------------------------------------------- /testutils/repository_data/keystore/delegation_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/keystore/delegation_key -------------------------------------------------------------------------------- /testutils/repository_data/keystore/delegation_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/keystore/delegation_key.pub -------------------------------------------------------------------------------- /testutils/repository_data/keystore/root_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/keystore/root_key -------------------------------------------------------------------------------- /testutils/repository_data/keystore/root_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/keystore/root_key.pub -------------------------------------------------------------------------------- /testutils/repository_data/keystore/root_key2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/keystore/root_key2 -------------------------------------------------------------------------------- /testutils/repository_data/keystore/root_key2.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/keystore/root_key2.pub -------------------------------------------------------------------------------- /testutils/repository_data/keystore/snapshot_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/keystore/snapshot_key -------------------------------------------------------------------------------- /testutils/repository_data/keystore/snapshot_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/keystore/snapshot_key.pub -------------------------------------------------------------------------------- /testutils/repository_data/keystore/targets_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/keystore/targets_key -------------------------------------------------------------------------------- /testutils/repository_data/keystore/targets_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/keystore/targets_key.pub -------------------------------------------------------------------------------- /testutils/repository_data/keystore/timestamp_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/keystore/timestamp_key -------------------------------------------------------------------------------- /testutils/repository_data/keystore/timestamp_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/keystore/timestamp_key.pub -------------------------------------------------------------------------------- /testutils/repository_data/repository/metadata/1.root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/repository/metadata/1.root.json -------------------------------------------------------------------------------- /testutils/repository_data/repository/metadata/role1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/repository/metadata/role1.json -------------------------------------------------------------------------------- /testutils/repository_data/repository/metadata/role2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/repository/metadata/role2.json -------------------------------------------------------------------------------- /testutils/repository_data/repository/metadata/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/repository/metadata/root.json -------------------------------------------------------------------------------- /testutils/repository_data/repository/metadata/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/repository/metadata/snapshot.json -------------------------------------------------------------------------------- /testutils/repository_data/repository/metadata/targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/repository/metadata/targets.json -------------------------------------------------------------------------------- /testutils/repository_data/repository/metadata/timestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/repository/metadata/timestamp.json -------------------------------------------------------------------------------- /testutils/repository_data/repository/targets/file1.txt: -------------------------------------------------------------------------------- 1 | This is an example target file. -------------------------------------------------------------------------------- /testutils/repository_data/repository/targets/file2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/repository_data/repository/targets/file2.txt -------------------------------------------------------------------------------- /testutils/repository_data/repository/targets/file3.txt: -------------------------------------------------------------------------------- 1 | This is role1's target file. -------------------------------------------------------------------------------- /testutils/simulator/repository_simulator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/simulator/repository_simulator.go -------------------------------------------------------------------------------- /testutils/simulator/repository_simulator_setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/simulator/repository_simulator_setup.go -------------------------------------------------------------------------------- /testutils/testutils/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdimitrov/go-tuf-metadata/HEAD/testutils/testutils/setup.go --------------------------------------------------------------------------------