We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First of all thanks for the great library This is actually not a big issue but on how to use section
Android hashes the key as follows; string key = CryptLib.getHashSha256("my secret key", 31); C# hashes as follows; String key = CryptLib.SHA256("my secret key", 32); //32 bytes = 256 bit
Which gave us at the beginning different results then I have changed the C# code to use 32bytes and results were identical.
The text was updated successfully, but these errors were encountered:
Thanks for reporting this one! I'll test and fix the code accordingly.
Sorry, something went wrong.
No branches or pull requests
First of all thanks for the great library
This is actually not a big issue but on how to use section
Android hashes the key as follows;
string key = CryptLib.getHashSha256("my secret key", 31);
C# hashes as follows;
String key = CryptLib.SHA256("my secret key", 32); //32 bytes = 256 bit
Which gave us at the beginning different results then I have changed the C# code to use 32bytes and results were identical.
The text was updated successfully, but these errors were encountered: