├── .gitignore ├── GNUmakefile ├── LICENSE.md ├── README.md ├── draft-paragon-paseto-rfc-00.txt ├── draft-paragon-paseto-rfc-01.txt └── paseto.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.pdf 3 | *.xml -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paseto-standard/paseto-rfc/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paseto-standard/paseto-rfc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paseto-standard/paseto-rfc/HEAD/README.md -------------------------------------------------------------------------------- /draft-paragon-paseto-rfc-00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paseto-standard/paseto-rfc/HEAD/draft-paragon-paseto-rfc-00.txt -------------------------------------------------------------------------------- /draft-paragon-paseto-rfc-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paseto-standard/paseto-rfc/HEAD/draft-paragon-paseto-rfc-01.txt -------------------------------------------------------------------------------- /paseto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paseto-standard/paseto-rfc/HEAD/paseto.md --------------------------------------------------------------------------------