├── .circleci └── config.yml ├── .editorconfig ├── .github └── workflows │ ├── archive.yml │ ├── ghpages.yml │ └── publish.yml ├── .gitignore ├── .note.xml ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── auth48 ├── Makefile ├── QUESTIONS.md ├── README.md ├── rfc9420.authors.xml ├── text-clean.py └── xml-clean.py ├── extract-tls.py └── rfc9420.md /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/archive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/.github/workflows/archive.yml -------------------------------------------------------------------------------- /.github/workflows/ghpages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/.github/workflows/ghpages.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/.gitignore -------------------------------------------------------------------------------- /.note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/.note.xml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/README.md -------------------------------------------------------------------------------- /auth48/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/auth48/Makefile -------------------------------------------------------------------------------- /auth48/QUESTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/auth48/QUESTIONS.md -------------------------------------------------------------------------------- /auth48/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/auth48/README.md -------------------------------------------------------------------------------- /auth48/rfc9420.authors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/auth48/rfc9420.authors.xml -------------------------------------------------------------------------------- /auth48/text-clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/auth48/text-clean.py -------------------------------------------------------------------------------- /auth48/xml-clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/auth48/xml-clean.py -------------------------------------------------------------------------------- /extract-tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/extract-tls.py -------------------------------------------------------------------------------- /rfc9420.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlswg/mls-protocol/HEAD/rfc9420.md --------------------------------------------------------------------------------