Fixed the tests
This commit is contained in:
parent
067e629a9c
commit
752f9d1229
26 changed files with 302 additions and 45 deletions
|
@ -77,6 +77,21 @@ VitroConnection.DataSource.validationQuery = SELECT 1
|
|||
#
|
||||
rootUser.emailAddress = root@myDomain.com
|
||||
|
||||
#
|
||||
# Argon2 password hashing parameters for time, memory and parallelism required to compute a hash.
|
||||
#
|
||||
# A time cost defines the amount of computation realized and therefore the execution time, given in a number of iterations
|
||||
# A memory cost defines the memory usage, given in kibibytes
|
||||
# A parallelism degree defines the number of parallel threads
|
||||
# For determining the optimal values of the parameters for your setup please refer to the white paper section 9 - https://github.com/P-H-C/phc-winner-argon2/blob/master/argon2-specs.pdf
|
||||
#
|
||||
# Warning: Please change the parameters only if you have installed a fresh installation of Vitro/Vivo and have not logged-in in the system yet.
|
||||
# If you already have user accounts encrypted through these parameters please do not change them otherwise the existing users would not be able to log-in.
|
||||
#
|
||||
argon2.parallelism =1
|
||||
argon2.memory = 1024
|
||||
argon2.time = 1000
|
||||
|
||||
#
|
||||
# How is a logged-in user associated with a particular Individual? One way is
|
||||
# for the Individual to have a property whose value is the username of the user.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue