diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2020-06-20 21:14:26 +0200 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2020-06-20 21:14:41 +0200 |
commit | 2675fac7fe07783d3266b59f6e1c0e0a337a84db (patch) | |
tree | 4e73285bc4972f0aeccb772ae512b2901f10bee1 /schema.sql | |
parent | f45959b53b8322a852554aa8dd7f8c9f4f99b5b4 (diff) |
server: User password hashing (libsodium Argon2id(3,64MB))
Diffstat (limited to 'schema.sql')
-rw-r--r-- | schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ create table Members ( create table Users ( id integer primary key not null, name text not null, - pass text not null + passhash text not null ); create unique index users_name_index on Users(name); |