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
When using hash(String) the salt is automatically generated as array of bytes, then converted into String and passed to hash(String, String) and in many cases i converted into array of bytes.
This double conversion is useless, even if the drop in performance is minimal.
The text was updated successfully, but these errors were encountered:
When using
hash(String)
the salt is automatically generated as array of bytes, then converted intoString
and passed tohash(String, String)
and in many cases i converted into array of bytes.This double conversion is useless, even if the drop in performance is minimal.
The text was updated successfully, but these errors were encountered: