-
Notifications
You must be signed in to change notification settings - Fork 113
fix: [IOPID-0000] apply fix on saml rquest decode #7397
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
base: master
Are you sure you want to change the base?
Changes from all commits
af08f45
b28358e
8985e23
77cb123
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -31,7 +31,7 @@ export const lollipopSamlVerify = ( | |||||
| const decodedSamlRequest = decodeURIComponent(urlEncodedSamlRequest); | ||||||
| // Result is a base64 encoded string, so decode it to obtain the (server) original XML | ||||||
| const xmlSamlRequest = pako.inflateRaw( | ||||||
| Buffer.from(decodedSamlRequest, "base64"), | ||||||
| Uint8Array.from(Buffer.from(decodedSamlRequest, "base64")), | ||||||
|
||||||
| Uint8Array.from(Buffer.from(decodedSamlRequest, "base64")), | |
| new Uint8Array(Buffer.from(decodedSamlRequest, "base64")), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Corrected spelling of 'rquest' to 'request' in the PR title.