Skip to content
New issue

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 #252

Open
det101 opened this issue Jan 19, 2020 · 0 comments
Open

Base64 does not support url_safe codec #252

det101 opened this issue Jan 19, 2020 · 0 comments

Comments

@det101
Copy link

det101 commented Jan 19, 2020

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=

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant