Commit graph

193 commits

Author SHA1 Message Date
Livio Amstutz
c56d5e5f9e fixes 2021-11-02 10:39:57 +01:00
Livio Amstutz
cd7695e2a9 Merge branch 'main' into op
# Conflicts:
#	pkg/oidc/introspection.go
#	pkg/oidc/userinfo.go
2021-11-02 10:17:05 +01:00
Livio Amstutz
99726ec85b remove unimplemented code 2021-11-02 10:10:52 +01:00
Livio Amstutz
7d3b5eb027 move auth_method_post to config 2021-11-02 10:10:52 +01:00
Livio Amstutz
4ddf7c7764 fix token revocation authentication and discovery config 2021-11-02 10:10:52 +01:00
Witold Konior
763d3334e7
feat: Enable parsing email_verified from string. (#139)
* Enable parsing email_verified from string.

AWS Cognito will return email_verified from /userinfo endpoint as string.
This fix will accept proper boolean values as well as string values.

Links for reference:
https://forums.aws.amazon.com/thread.jspa?messageID=949441&#949441
https://discuss.elastic.co/t/openid-error-after-authenticating-against-aws-cognito/206018/11

* feat: Enable parsing email_verified from string.
2021-11-02 09:14:33 +01:00
Livio Amstutz
162990f974 some linting 2021-10-28 16:04:58 +02:00
Livio Amstutz
2ad9f081da add missing omitempty 2021-10-28 15:37:00 +02:00
Livio Amstutz
1d72aff00a tests and cleanup 2021-10-28 15:21:47 +02:00
Livio Amstutz
d0b8dfe340 revocation 2021-10-28 07:59:43 +02:00
Livio Amstutz
9721c25336 begin revocation 2021-10-28 07:59:43 +02:00
Livio Amstutz
cef977adc2 Merge branch 'main' into op
# Conflicts:
#	pkg/client/rp/relaying_party.go
2021-10-28 07:51:28 +02:00
陈杨文
c45f03e144
fix: allowed ConcatenateJSON with empty input (#138) 2021-10-28 07:06:34 +02:00
Livio Amstutz
703c0808b2 fix code response 2021-10-26 16:10:18 +02:00
Livio Amstutz
3b89a976b3 cleanup 2021-10-25 12:07:08 +02:00
Livio Amstutz
052a86f28a ClaimsSignature 2021-10-25 12:06:00 +02:00
Livio Amstutz
484182a0f8 handle response mode 2021-10-25 11:57:26 +02:00
Livio Amstutz
f067d723f2 handle request object 2021-10-25 11:53:59 +02:00
Livio Amstutz
72a9829117 document discovery configuration 2021-10-21 14:36:55 +02:00
陈杨文
ff2c164057
fix: improve example & fix userinfo marshal (#132)
* fix: example client should track state, call cli.CodeFlow need context

* fix: oidc userinfo can UnmarshalJSON with address

* rp Discover use client.Discover

* add instruction for example to README.md
2021-10-08 08:20:45 +02:00
Livio Amstutz
78f8017b73 add scope offline_access into scopes_supported 2021-09-29 09:37:51 +02:00
Livio Amstutz
0ab5ea5a57 refactor: remove utils pkg
BREAKING CHANGE: utils package has been removed in favor of specific new
packages (http, crypto, strings)
2021-09-27 11:58:28 +02:00
Livio Amstutz
251c476e17 fixes 2021-09-27 11:57:14 +02:00
Livio Amstutz
b60f1ed7a8 errors 2021-09-27 09:08:34 +02:00
Livio Amstutz
f90e685c76 Merge branch 'main' into op 2021-09-27 08:17:20 +02:00
Livio Amstutz
a63fbee93d
fix: improve JWS and key verification (#128)
* fix: improve JWS and key verification

* fix: get remote keys if no cached key matches

* fix: get remote keys if no cached key matches

* fix exactMatch

* fix exactMatch

* chore: change default branch name in .releaserc.js
2021-09-14 15:13:44 +02:00
Timo Volkmann
99812e0b8e
pkce: encode code verifier with base64 without padding
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
2021-09-13 13:56:38 +02:00
Timo Volkmann
af3a497b6d fix: make pkce code_verifier spec compliant #125
follow recommendations for code_verifier: https://datatracker.ietf.org/doc/html/rfc7636#section-4.1
2021-09-09 14:33:59 +02:00
Livio Amstutz
07c9890c95 fix: errors 2021-08-27 13:55:02 +02:00
Beardo Moore
581885afb1
task: Ease dev host name constraints
This changes the requirements for a issuer hostname to allow anything
that is `http`. The reason for this is because the user of the library
already has to make a conscious decision to set `CAOS_OIDC_DEV` so they
should already understand the risks of not using `https`. The primary
motivation for this change is to allow IdPs to be created in a
containerized integration test environment. Specifically setting up a
docker compose file that starts all parts of the system with a test IdP
using this library where the DNS name will not be `localhost`.
2021-08-26 20:32:51 +00:00
Livio Amstutz
aab1a979e5 correct verifier 2021-08-20 07:51:23 +02:00
Livio Amstutz
37a504cb43 fix and add some tests 2021-08-20 07:49:00 +02:00
Livio Amstutz
8b40741e7a return correct scope list 2021-08-20 07:48:20 +02:00
Livio Amstutz
38a1f315de fix json response 2021-08-20 07:47:45 +02:00
Livio Amstutz
d2d3395c25 fix: improve error handling 2021-08-20 07:47:07 +02:00
Livio Amstutz
6cc3c91d07 remove deprecated encrypted private key conversion 2021-08-20 07:41:33 +02:00
Livio Amstutz
5715d1528f remove duplicate method 2021-08-20 07:40:06 +02:00
Livio Amstutz
807da0b27d remove unnecessary context 2021-08-20 07:39:34 +02:00
Livio Amstutz
1132c9d93d
fix: removeUserinfoScopes return new slice (without manipulating passed one) (#110) 2021-07-21 08:27:38 +02:00
Livio Amstutz
8a35b89815
fix: supported ui locales from config (#107) 2021-07-09 09:20:03 +02:00
Livio Amstutz
147c6dca6e fixes 2021-07-06 08:58:35 +02:00
Livio Amstutz
58e27e8073 simplify KeyProvider interface 2021-06-30 14:10:38 +02:00
Livio Amstutz
0b446618c7 custom claims for assertion and jwt profile request 2021-06-23 14:01:31 +02:00
Livio Amstutz
e9fc710b1f Merge branch 'master' into jwt-profile-storage
# Conflicts:
#	pkg/op/verifier_jwt_profile.go
2021-06-23 13:51:20 +02:00
Livio Amstutz
850faa159d
fix: rp verification process (#95)
* fix: rp verification process

* types

* comments

* fix cli client
2021-06-23 11:08:54 +02:00
Livio Amstutz
39fef3e7fb fix: simplify JWTProfileVerifier interface 2021-06-21 14:04:38 +02:00
Livio Amstutz
400f5c4de4
fix: parse max_age and prompt correctly (and change scope type) (#105)
* fix: parse max_age and prompt correctly (and change scope type)

* remove unnecessary omitempty
2021-06-16 08:34:01 +02:00
Livio Amstutz
3e336a4075
fix: check refresh token grant type (#100) 2021-05-31 11:35:03 +02:00
Livio Amstutz
14faebbb77 fix: check grant types and add refresh token to discovery 2021-05-27 13:44:11 +02:00
Livio Amstutz
d362dd7546 handle error 2021-05-11 15:20:22 +02:00