mirror of
https://github.com/micromdm/micromdm/
synced 2026-07-31 13:55:40 +08:00
Initial structure for database clients. Exposes a user package with SQLite and PostgreSQL implementations.
7 lines
108 B
Go
7 lines
108 B
Go
// +build !test
|
|
|
|
package user
|
|
|
|
// https://blog.filippo.io/the-scrypt-parameters/
|
|
const scryptCost = 1 << 15
|