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
Base64 does not support url_safe codec, resulting in inconsistencies with the backend example:
secret key = "u-rXsMB_aegAnzC_CJt27plLGNqOfR2EHI5o2ro1NOI"; message = "https://github.com/";
var hash = CryptoJS.HmacSHA256(message, baseKey); var hashInBase64 = CryptoJS.enc.Base64.stringify(hash);
Expect the results: KkcD0POQJ50q-NsUoOwsrrc8140TYEtfiQBCwbf0u04 The actual results: KkcD0POQJ50q+NsUoOwsrrc8140TYEtfiQBCwbf0u04=
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Base64 does not support url_safe codec, resulting in inconsistencies with the backend
example:
secret key = "u-rXsMB_aegAnzC_CJt27plLGNqOfR2EHI5o2ro1NOI";
message = "https://github.com/";
var hash = CryptoJS.HmacSHA256(message, baseKey);
var hashInBase64 = CryptoJS.enc.Base64.stringify(hash);
Expect the results: KkcD0POQJ50q-NsUoOwsrrc8140TYEtfiQBCwbf0u04
The actual results: KkcD0POQJ50q+NsUoOwsrrc8140TYEtfiQBCwbf0u04=
The text was updated successfully, but these errors were encountered: