├── .gitignore ├── Makefile ├── README.md └── mosquitto_auth_plugin_jwt.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilcc/mosquitto_auth_plugin_jwt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilcc/mosquitto_auth_plugin_jwt/HEAD/README.md -------------------------------------------------------------------------------- /mosquitto_auth_plugin_jwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilcc/mosquitto_auth_plugin_jwt/HEAD/mosquitto_auth_plugin_jwt.c --------------------------------------------------------------------------------