You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each method of SystemChecker class returns an int, but for algorithm like Argon2 there is the need to return both the number of iterations and memory, since memory must be lowered if the minimum execution time required cannot be met.See Section 9
It could return a prototype of the function.
Resultresult = SystemCheker.find...(...)
result.getPrototype() // instance of AbstractHashingFunctionresult.getElapsed() // this may be not equal to the desired minimum computational time
The text was updated successfully, but these errors were encountered:
Each method of
SystemChecker
class returns anint
, but for algorithm likeArgon2
there is the need to return both the number of iterations and memory, since memory must be lowered if the minimum execution time required cannot be met.See Section 9It could return a prototype of the function.
The text was updated successfully, but these errors were encountered: