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
The Salt.generateAsBase64String function produces a string that is the base64 representation of a random byte sequence. The PBKDF2.generateKey function takes the salt as a string but interprets it as a UTF-8 string. Since the salt is actually a base64 string, and not a UTF-8 string, there is some loss in the available range.
The
Salt.generateAsBase64Stringfunction produces a string that is the base64 representation of a random byte sequence. ThePBKDF2.generateKeyfunction takes the salt as a string but interprets it as a UTF-8 string. Since the salt is actually a base64 string, and not a UTF-8 string, there is some loss in the available range.