├── .github └── CODEOWNERS ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-SUMMARY ├── README.md ├── TrustedCertificateAuthorities ├── XKS_arch_v8.png └── xks_proxy_api_spec.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-kms-xksproxy-api-spec/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | build 3 | Config 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-kms-xksproxy-api-spec/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-kms-xksproxy-api-spec/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-SUMMARY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-kms-xksproxy-api-spec/HEAD/LICENSE-SUMMARY -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-kms-xksproxy-api-spec/HEAD/README.md -------------------------------------------------------------------------------- /TrustedCertificateAuthorities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-kms-xksproxy-api-spec/HEAD/TrustedCertificateAuthorities -------------------------------------------------------------------------------- /XKS_arch_v8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-kms-xksproxy-api-spec/HEAD/XKS_arch_v8.png -------------------------------------------------------------------------------- /xks_proxy_api_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-kms-xksproxy-api-spec/HEAD/xks_proxy_api_spec.md --------------------------------------------------------------------------------