-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add support for EdDSA #1
Conversation
7597d58
to
a8b4184
Compare
@@ -173,7 +173,7 @@ class OpenIDConnectClient | |||
|
|||
/** | |||
* @var mixed holds well-known openid configuration parameters, like policy for MS Azure AD B2C User Flow | |||
* @see https://docs.microsoft.com/en-us/azure/active-directory-b2c/user-flow-overview | |||
* @see https://docs.microsoft.com/en-us/azure/active-directory-b2c/user-flow-overview |
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.
auto fixing of whitespace by my IDE
@@ -686,7 +686,7 @@ public function getRedirectURL(): string | |||
} else { | |||
$protocol = 'http'; | |||
} | |||
|
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.
auto fixing of whitespace by my IDE
@@ -709,7 +709,7 @@ public function getRedirectURL(): string | |||
} | |||
|
|||
$port = (443 === $port) || (80 === $port) ? '' : ':' . $port; | |||
|
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.
auto fixing of whitespace by my IDE
a8b4184
to
f78ba9f
Compare
f78ba9f
to
0d56df7
Compare
Adds EdDSA support to
OpenID-Connect-PHP