in src/main/java/org/apache/sling/auth/oauth_client/impl/SlingLoginCookieManager.java [84:94]
public SlingLoginCookieManager(SlingLoginCookieManagerConfig config, BundleContext bundleContext)
throws InvalidKeyException, NoSuchAlgorithmException, IllegalStateException {
final String tokenFileName = config.tokenFile();
final File tokenFile = getTokenFile(tokenFileName, bundleContext);
final boolean fastSeed = config.form_token_fastseed();
log.info("Storing tokens in {}", tokenFile.getAbsolutePath());
this.sessionTimeout = config.sessionTimeout();
this.cookieName = config.cookieName();
this.tokenStore = new TokenStore(tokenFile, sessionTimeout, fastSeed);
}