Posted by Abe on Sep 17
Most APIs will give you a byte array after Base64 decoding. Once you havethe byte array you will need to pass that to the string constructor and
specify the character set used on the system where the passwords were
stored.
Usually the passwords will be base64 encoded before being stored in the db
so when you convert the base64 decoded bytes into a string you either want
to do this on the same system that base64 encoded the data using the...