Attempt to authenticate a user based on the credentials specified in `request`. `conn`: used to query the "users" table in the Tagger database `key`: used to sign access tokens `mutex`: used to bottleneck all calls to this method in order to mitigate parallel brute force attacks `invalid_credential_delay`: minimum delay added to responses to invalid authentication requests. Note that these de
(
conn: &AsyncMutex<SqliteConnection>,
request: &TokenRequest,
key: &[u8],
mutex: &AsyncMutex<()>,
invalid_credential_delay: Duration,
)
source not stored for this graph (policy: none)
no test coverage detected