├── .github └── workflows │ ├── build.yml │ └── docs.yml ├── .gitignore ├── LICENSE ├── README.md ├── dlls ├── libcrypto-1_1-x64.dll ├── libeay32.dll ├── libssl-1_1-x64.dll └── readme.md ├── quickjwt.nimble ├── src ├── quickjwt.nim └── quickjwt │ └── crypto.nim └── tests ├── nim.cfg └── testjwt.nim /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/quickjwt/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/quickjwt/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !**/ 3 | !*.* 4 | !LICENSE 5 | nimcache/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/quickjwt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/quickjwt/HEAD/README.md -------------------------------------------------------------------------------- /dlls/libcrypto-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/quickjwt/HEAD/dlls/libcrypto-1_1-x64.dll -------------------------------------------------------------------------------- /dlls/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/quickjwt/HEAD/dlls/libeay32.dll -------------------------------------------------------------------------------- /dlls/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/quickjwt/HEAD/dlls/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /dlls/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/quickjwt/HEAD/dlls/readme.md -------------------------------------------------------------------------------- /quickjwt.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/quickjwt/HEAD/quickjwt.nimble -------------------------------------------------------------------------------- /src/quickjwt.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/quickjwt/HEAD/src/quickjwt.nim -------------------------------------------------------------------------------- /src/quickjwt/crypto.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/quickjwt/HEAD/src/quickjwt/crypto.nim -------------------------------------------------------------------------------- /tests/nim.cfg: -------------------------------------------------------------------------------- 1 | path = "../src" 2 | --d:ssl 3 | --passL:"-lcrypto" 4 | -------------------------------------------------------------------------------- /tests/testjwt.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/quickjwt/HEAD/tests/testjwt.nim --------------------------------------------------------------------------------