AuthSessionConfig constructor

AuthSessionConfig({
  1. int sessionKeySecretLength = 32,
  2. int sessionKeyHashSaltLength = 16,
})

Create a new user session configuration.

Implementation

AuthSessionConfig({
  this.sessionKeySecretLength = 32,
  this.sessionKeyHashSaltLength = 16,
});