mirror of
https://github.com/ArthurDanjou/artdanj-shortener.git
synced 2026-01-14 13:54:03 +01:00
57 lines
1.4 KiB
TypeScript
Executable File
57 lines
1.4 KiB
TypeScript
Executable File
/**
|
|
* Config source: https://git.io/JfefW
|
|
*
|
|
* Feel free to let us know via PR, if you find something broken in this config
|
|
* file.
|
|
*/
|
|
|
|
import { HashConfig } from '@ioc:Adonis/Core/Hash'
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Hash Config
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The `HashConfig` relies on the `HashList` interface which is
|
|
| defined inside `contracts` directory.
|
|
|
|
|
*/
|
|
const hashConfig: HashConfig = {
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default hasher
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| By default we make use of the bcrypt hasher to hash values. However, feel
|
|
| free to change the default value
|
|
|
|
|
*/
|
|
default: 'argon',
|
|
|
|
list: {
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Argon
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Argon mapping uses the `argon2` driver to hash values.
|
|
|
|
|
| Make sure you install the underlying dependency for this driver to work.
|
|
| https://www.npmjs.com/package/phc-argon2.
|
|
|
|
|
| npm install phc-argon2
|
|
|
|
|
*/
|
|
argon: {
|
|
driver: 'argon2',
|
|
variant: 'id',
|
|
iterations: 3,
|
|
memory: 4096,
|
|
parallelism: 1,
|
|
saltSize: 16,
|
|
},
|
|
},
|
|
}
|
|
|
|
export default hashConfig
|