-
Notifications
You must be signed in to change notification settings - Fork 6
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
feat: adfs authentication support #214
Conversation
e142ac1
to
acab5c7
Compare
acab5c7
to
e11669d
Compare
std::string ADFS_SAML_UTIL::get_value_by_key(const std::string& input, const std::string& key) { | ||
std::string pattern("("); | ||
pattern += key; | ||
pattern += ")\\s*=\\s*\"(.*?)\""; |
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.
Minor: std::regex pattern
on line 129 above is using a const
for the pattern. Does it make sense to define a const
for this pattern as well?
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.
Looks good overall. 👍
Just a few minor callouts to look through. It should be quick to get through all of them.
Summary
Add ADFS authentication support.
Update the build-installer script so it has all required dependencies to build the driver.
Description
Review Status
Additional Reviewers