Implement KDF iterations change (Fixes #195)

This commit is contained in:
Daniel García
2018-09-19 17:30:14 +02:00
parent 89e3c41043
commit ebb66c374e
6 changed files with 69 additions and 22 deletions

View File

@@ -0,0 +1,7 @@
ALTER TABLE users
ADD COLUMN
client_kdf_type INTEGER NOT NULL DEFAULT 0; -- PBKDF2
ALTER TABLE users
ADD COLUMN
client_kdf_iter INTEGER NOT NULL DEFAULT 5000;