GitHub
04/07/2026, 3:10 PM// Types of authentication const ( AuthNone string = "none" AuthJSON string = "json" AuthDB string = "db" AuthSAML string = "saml" AuthJWT string = "jwt" AuthOAuth string = "oauth" AuthOIDC string = "oidc" )
and some are still listed here:
Authentication types (auth):
none - No authentication
db - Users stored and retrieved from backend database
saml - SAML-based authentication
headers - Header-based authentication (middleware approach)
jwt - JWT token-based authentication
https://osctrl.net/configuration/
It seems like only db and SAML are actually implemented? Any plans to actually add support for e.g. OIDC?
Any help is appreciated. :)
edit: I will try to draft a PR for OCID
jmpsec/osctrlGitHub
04/14/2026, 4:41 PM