| 48 | |
| 49 | |
| 50 | JWTAuthenticatorProcess::JWTAuthenticatorProcess( |
| 51 | const string& realm, |
| 52 | const string& secret) |
| 53 | : ProcessBase(ID::generate("__jwt_authenticator__")), |
| 54 | realm_(realm), |
| 55 | secret_(secret) {} |
| 56 | |
| 57 | |
| 58 | Future<AuthenticationResult> JWTAuthenticatorProcess::authenticate( |
nothing calls this directly
no test coverage detected