├── .editorconfig ├── .github ├── CODEOWNERS └── workflows │ ├── archive.yml │ ├── ghpages.yml │ ├── publish.yml │ └── update.yml ├── .gitignore ├── CONTRIBUTING.md ├── HOWTO.md ├── LICENSE.md ├── Makefile ├── README.md ├── draft-ietf-openpgp-pqc.md └── test-vectors ├── v4-eddsa-sample-message-v1.asc ├── v4-eddsa-sample-message-v2.asc ├── v4-eddsa-sample-pk.asc ├── v4-eddsa-sample-sk.asc ├── v6-eddsa-sample-message.asc ├── v6-eddsa-sample-pk.asc ├── v6-eddsa-sample-sk.asc ├── v6-mldsa-65-sample-message.asc ├── v6-mldsa-65-sample-pk.asc ├── v6-mldsa-65-sample-signature.asc ├── v6-mldsa-65-sample-sk.asc ├── v6-mldsa-87-sample-message.asc ├── v6-mldsa-87-sample-pk.asc ├── v6-mldsa-87-sample-signature.asc ├── v6-mldsa-87-sample-sk.asc ├── v6-slhdsa-128f-sample-pk.asc ├── v6-slhdsa-128f-sample-signature.asc ├── v6-slhdsa-128f-sample-sk.asc ├── v6-slhdsa-128s-sample-message.asc ├── v6-slhdsa-128s-sample-pk.asc ├── v6-slhdsa-128s-sample-signature.asc ├── v6-slhdsa-128s-sample-sk.asc ├── v6-slhdsa-256s-sample-pk.asc ├── v6-slhdsa-256s-sample-signature.asc └── v6-slhdsa-256s-sample-sk.asc /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/archive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/.github/workflows/archive.yml -------------------------------------------------------------------------------- /.github/workflows/ghpages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/.github/workflows/ghpages.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/HOWTO.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/README.md -------------------------------------------------------------------------------- /draft-ietf-openpgp-pqc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/draft-ietf-openpgp-pqc.md -------------------------------------------------------------------------------- /test-vectors/v4-eddsa-sample-message-v1.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v4-eddsa-sample-message-v1.asc -------------------------------------------------------------------------------- /test-vectors/v4-eddsa-sample-message-v2.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v4-eddsa-sample-message-v2.asc -------------------------------------------------------------------------------- /test-vectors/v4-eddsa-sample-pk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v4-eddsa-sample-pk.asc -------------------------------------------------------------------------------- /test-vectors/v4-eddsa-sample-sk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v4-eddsa-sample-sk.asc -------------------------------------------------------------------------------- /test-vectors/v6-eddsa-sample-message.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-eddsa-sample-message.asc -------------------------------------------------------------------------------- /test-vectors/v6-eddsa-sample-pk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-eddsa-sample-pk.asc -------------------------------------------------------------------------------- /test-vectors/v6-eddsa-sample-sk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-eddsa-sample-sk.asc -------------------------------------------------------------------------------- /test-vectors/v6-mldsa-65-sample-message.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-mldsa-65-sample-message.asc -------------------------------------------------------------------------------- /test-vectors/v6-mldsa-65-sample-pk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-mldsa-65-sample-pk.asc -------------------------------------------------------------------------------- /test-vectors/v6-mldsa-65-sample-signature.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-mldsa-65-sample-signature.asc -------------------------------------------------------------------------------- /test-vectors/v6-mldsa-65-sample-sk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-mldsa-65-sample-sk.asc -------------------------------------------------------------------------------- /test-vectors/v6-mldsa-87-sample-message.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-mldsa-87-sample-message.asc -------------------------------------------------------------------------------- /test-vectors/v6-mldsa-87-sample-pk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-mldsa-87-sample-pk.asc -------------------------------------------------------------------------------- /test-vectors/v6-mldsa-87-sample-signature.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-mldsa-87-sample-signature.asc -------------------------------------------------------------------------------- /test-vectors/v6-mldsa-87-sample-sk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-mldsa-87-sample-sk.asc -------------------------------------------------------------------------------- /test-vectors/v6-slhdsa-128f-sample-pk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-slhdsa-128f-sample-pk.asc -------------------------------------------------------------------------------- /test-vectors/v6-slhdsa-128f-sample-signature.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-slhdsa-128f-sample-signature.asc -------------------------------------------------------------------------------- /test-vectors/v6-slhdsa-128f-sample-sk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-slhdsa-128f-sample-sk.asc -------------------------------------------------------------------------------- /test-vectors/v6-slhdsa-128s-sample-message.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-slhdsa-128s-sample-message.asc -------------------------------------------------------------------------------- /test-vectors/v6-slhdsa-128s-sample-pk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-slhdsa-128s-sample-pk.asc -------------------------------------------------------------------------------- /test-vectors/v6-slhdsa-128s-sample-signature.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-slhdsa-128s-sample-signature.asc -------------------------------------------------------------------------------- /test-vectors/v6-slhdsa-128s-sample-sk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-slhdsa-128s-sample-sk.asc -------------------------------------------------------------------------------- /test-vectors/v6-slhdsa-256s-sample-pk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-slhdsa-256s-sample-pk.asc -------------------------------------------------------------------------------- /test-vectors/v6-slhdsa-256s-sample-signature.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-slhdsa-256s-sample-signature.asc -------------------------------------------------------------------------------- /test-vectors/v6-slhdsa-256s-sample-sk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpgp-pqc/draft-openpgp-pqc/HEAD/test-vectors/v6-slhdsa-256s-sample-sk.asc --------------------------------------------------------------------------------