language
stringlengths
0
24
filename
stringlengths
9
214
code
stringlengths
99
9.93M
Go
hydra/flow/consent_types.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 package flow import ( "database/sql" "database/sql/driver" "encoding/json" "fmt" "net/http" "time" "github.com/gobuffalo/pop/v6" "github.com/gofrs/uuid" "github.com/ory/x/errorsx" "github.com/ory/fosite" "github.com/ory/hydra/v2/client...
Go
hydra/flow/consent_types_test.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 package flow import ( "fmt" "testing" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "github.com/ory/fosite" ) func TestToRFCError(t *testing.T) { for k, tc := range []struct { input *RequestDeniedError expe...
Go
hydra/flow/flow.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 package flow import ( "context" "time" "github.com/gobuffalo/pop/v6" "github.com/gofrs/uuid" "github.com/pkg/errors" "github.com/ory/hydra/v2/aead" "github.com/ory/hydra/v2/client" "github.com/ory/hydra/v2/oauth2/flowctx" "github.com/ory/...
Go
hydra/flow/flow_test.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 package flow import ( "testing" "time" "github.com/go-faker/faker/v4" "github.com/mohae/deepcopy" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "github.com/ory/x/sqlxx" ) func (f *Flow) setLoginRequest(r *Login...
Go
hydra/fositex/config.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 package fositex import ( "context" "crypto/sha512" "hash" "html/template" "net/url" "github.com/hashicorp/go-retryablehttp" "github.com/ory/fosite" "github.com/ory/fosite/compose" "github.com/ory/fosite/i18n" "github.com/ory/fosite/token...
Go
hydra/fositex/token_strategy.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 package fositex import ( "context" "strings" "github.com/ory/fosite" foauth2 "github.com/ory/fosite/handler/oauth2" "github.com/ory/hydra/v2/client" "github.com/ory/hydra/v2/driver/config" ) var _ foauth2.CoreStrategy = (*TokenStrategy)(nil)...
Go
hydra/fositex/token_strategy_test.go
// Copyright © 2023 Ory Corp // SPDX-License-Identifier: Apache-2.0 package fositex import ( "context" "testing" "github.com/stretchr/testify/assert" "github.com/ory/fosite/handler/oauth2" ) // Test that the generic signature function implements the same signature as the // HMAC and JWT strategies. func TestA...
Go
hydra/health/doc.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 package health // Alive returns an ok status if the instance is ready to handle HTTP requests. // // swagger:route GET /health/alive public isInstanceAlive // // # Check Alive Status // // This endpoint returns a 200 status code when the HTTP server...
Go
hydra/health/handler_test.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 package health import ( "context" "net/http" "net/http/httptest" "testing" "github.com/stretchr/testify/assert" "github.com/ory/x/contextx" "github.com/stretchr/testify/require" "github.com/ory/hydra/v2/driver/config" "github.com/ory/hy...
Go
hydra/hsm/crypto11_mock_test.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 //go:build hsm // +build hsm // Code generated by MockGen. DO NOT EDIT. // Source: github.com/ThalesIgnite/crypto11 (interfaces: SignerDecrypter) // Package hsm_test is a generated GoMock package. package hsm_test import ( crypto "crypto" io "io...
Go
hydra/hsm/hsm.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 //go:build hsm // +build hsm package hsm import ( "crypto/elliptic" "github.com/ThalesIgnite/crypto11" "github.com/ory/hydra/v2/driver/config" "github.com/ory/x/logrusx" ) type Context interface { GenerateRSAKeyPairWithAttributes(public, pr...
Go
hydra/hsm/hsm_mock_test.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 //go:build hsm // +build hsm // Code generated by MockGen. DO NOT EDIT. // Source: hsm/hsm.go // Package hsm_test is a generated GoMock package. package hsm_test import ( elliptic "crypto/elliptic" reflect "reflect" crypto11 "github.com/Thales...
Go
hydra/hsm/manager_hsm.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 //go:build hsm // +build hsm package hsm import ( "context" "crypto/ecdsa" "crypto/elliptic" "crypto/rsa" "crypto/x509" "fmt" "net/http" "sync" "github.com/ory/hydra/v2/driver/config" "github.com/ory/x/otelx" "github.com/pkg/errors" ...
Go
hydra/hsm/manager_hsm_test.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 //go:build hsm // +build hsm package hsm_test import ( "context" "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/rsa" "crypto/x509" "fmt" "reflect" "testing" "github.com/ory/hydra/v2/jwk" "github.com/ory/x/contextx" "github.com...
Go
hydra/hsm/manager_nohsm.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 //go:build !hsm // +build !hsm package hsm import ( "context" "sync" "github.com/ory/hydra/v2/driver/config" "github.com/ory/x/logrusx" "github.com/pkg/errors" "github.com/ory/hydra/v2/jwk" "github.com/go-jose/go-jose/v3" ) type Context...
YAML
hydra/internal/.hydra.yaml
log: level: debug leak_sensitive_values: false format: json serve: public: port: 1 host: localhost socket: owner: hydra group: hydra-public-api mode: 0775 cors: enabled: false allowed_origins: - https://example.com allowed_methods: - GET ...
Go
hydra/internal/driver.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 package internal import ( "context" "sync" "testing" "github.com/go-jose/go-jose/v3" "github.com/ory/x/configx" "github.com/stretchr/testify/require" "github.com/ory/hydra/v2/x" "github.com/ory/x/contextx" "github.com/ory/x/sqlcon/docke...
Go
hydra/internal/fosite_store.go
// Copyright © 2022 Ory Corp // SPDX-License-Identifier: Apache-2.0 package internal import ( "context" "github.com/ory/hydra/v2/client" "github.com/ory/hydra/v2/driver" ) func AddFositeExamples(r driver.Registry) { for _, c := range []client.Client{ { LegacyClientID: "my-client", Secret: "foob...
hydra/internal/certification/C.F.T.T.s.tar
./OP-Req-login_hint.txt0000644000000000000000000001446113313422663015116 0ustar rootroot...
hydra/internal/certification/CI.F.T.T.s.tar
./OP-Req-login_hint.txt0000644000000000000000000002216313313423547015116 0ustar rootroot...
hydra/internal/certification/CIT.F.T.T.s.tar
./OP-Req-login_hint.txt0000644000000000000000000002342513313424404015111 0ustar rootroot...
hydra/internal/certification/CT.F.T.T.s.tar
./OP-Req-login_hint.txt0000644000000000000000000001552513313425437015122 0ustar rootroot...
hydra/internal/certification/I.F.T.T.s.tar
./OP-Req-login_hint.txt0000644000000000000000000002112413313427475015116 0ustar rootroot...
hydra/internal/certification/IT.F.T.T.s.tar
./OP-Req-login_hint.txt0000644000000000000000000002237313313427047015120 0ustar rootroot...
Text
hydra/internal/certification/C.F.T.T.s/OP-claims-essential.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-claims-essential Test description: Claims request with essential name claim Timestamp: 2018-06-23T10:45:15Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--...
Text
hydra/internal/certification/C.F.T.T.s/OP-ClientAuth-Basic-Dynamic.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-ClientAuth-Basic-Dynamic Test description: Access token request with client_secret_basic authentication Timestamp: 2018-06-23T10:44:36Z ============================================================ Trace output 0.0 phase ...
Text
hydra/internal/certification/C.F.T.T.s/OP-ClientAuth-SecretPost-Dynamic.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-ClientAuth-SecretPost-Dynamic Test description: Access token request with client_secret_post authentication Timestamp: 2018-06-23T10:44:47Z ============================================================ Trace output 0.0 ph...
Text
hydra/internal/certification/C.F.T.T.s/OP-Discovery-claims_supported.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Discovery-claims_supported Test description: Verify that claims_supported is published Timestamp: 2018-06-23T10:43:24Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webf...
Text
hydra/internal/certification/C.F.T.T.s/OP-Discovery-Config.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Discovery-Config Test description: Publishes openid-configuration discovery information Timestamp: 2018-06-23T10:43:21Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Web...
Text
hydra/internal/certification/C.F.T.T.s/OP-Discovery-JWKs.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Discovery-JWKs Test description: Keys in OP JWKs well formed Timestamp: 2018-06-23T10:43:23Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0 not expec...
Text
hydra/internal/certification/C.F.T.T.s/OP-Discovery-jwks_uri.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Discovery-jwks_uri Test description: Verify that jwks_uri is published Timestamp: 2018-06-23T10:43:25Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0...
Text
hydra/internal/certification/C.F.T.T.s/OP-display-page.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-display-page Test description: Request with display=page Timestamp: 2018-06-23T10:45:20Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Note -->--> 1.456 phase <--<-- 1 -...
Text
hydra/internal/certification/C.F.T.T.s/OP-display-popup.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-display-popup Test description: Request with display=popup Timestamp: 2018-06-23T10:45:26Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Note -->--> 1.129 phase <--<-- 1...
Text
hydra/internal/certification/C.F.T.T.s/OP-IDToken-C-Signature.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-IDToken-C-Signature Test description: Does the OP sign the ID Token and with what Timestamp: 2018-06-23T10:44:19Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger...
Text
hydra/internal/certification/C.F.T.T.s/OP-IDToken-kid.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-IDToken-kid Test description: IDToken has kid [Basic, Implicit, Hybrid] Timestamp: 2018-06-23T10:44:33Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0....
Text
hydra/internal/certification/C.F.T.T.s/OP-IDToken-RS256.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-IDToken-RS256 Test description: Asymmetric ID Token signature with RS256 Timestamp: 2018-06-23T10:44:28Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0...
Text
hydra/internal/certification/C.F.T.T.s/OP-nonce-code.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-nonce-code Test description: ID Token has nonce when requested for code flow Timestamp: 2018-06-23T10:45:34Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->-...
Text
hydra/internal/certification/C.F.T.T.s/OP-nonce-NoReq-code.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-nonce-NoReq-code Test description: Login no nonce, code flow [Basic] Timestamp: 2018-06-23T10:45:30Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0 n...
Text
hydra/internal/certification/C.F.T.T.s/OP-OAuth-2nd-30s.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-OAuth-2nd-30s Test description: Trying to use authorization code twice with 30 seconds in between uses must result in an error Timestamp: 2018-06-23T10:50:33Z ============================================================ T...
Text
hydra/internal/certification/C.F.T.T.s/OP-OAuth-2nd-Revokes.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-OAuth-2nd-Revokes Test description: Trying to use authorization code twice should result in revoking previously issued access tokens Timestamp: 2018-06-23T10:50:43Z =========================================================...
Text
hydra/internal/certification/C.F.T.T.s/OP-OAuth-2nd.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-OAuth-2nd Test description: Trying to use authorization code twice should result in an error Timestamp: 2018-06-23T10:49:57Z ============================================================ Trace output 0.0 phase <--<-- 0 --...
Text
hydra/internal/certification/C.F.T.T.s/OP-prompt-login.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-prompt-login Test description: Request with prompt=login Timestamp: 2018-06-23T10:45:45Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0 not expected ...
Text
hydra/internal/certification/C.F.T.T.s/OP-prompt-none-LoggedIn.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-prompt-none-LoggedIn Test description: Request with prompt=none when logged in [Basic, Implicit, Hybrid] Timestamp: 2018-06-23T10:45:54Z ============================================================ Trace output 0.0 phase...
Text
hydra/internal/certification/C.F.T.T.s/OP-prompt-none-NotLoggedIn.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-prompt-none-NotLoggedIn Test description: Request with prompt=none when not logged in Timestamp: 2018-06-23T10:46:04Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Note ...
Text
hydra/internal/certification/C.F.T.T.s/OP-redirect_uri-Missing.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-redirect_uri-Missing Test description: Reject request without redirect_uri when multiple registered Timestamp: 2018-06-23T10:46:17Z ============================================================ Trace output 0.0 phase <--<...
Text
hydra/internal/certification/C.F.T.T.s/OP-redirect_uri-NotReg.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-redirect_uri-NotReg Test description: Sent redirect_uri does not match a registered redirect_uri Timestamp: 2018-06-23T10:46:41Z ============================================================ Trace output 0.0 phase <--<-- ...
Text
hydra/internal/certification/C.F.T.T.s/OP-redirect_uri-Query-Added.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-redirect_uri-Query-Added Test description: Request with redirect_uri with query component when registered redirect_uri has no query component Timestamp: 2018-06-23T10:46:44Z ================================================...
Text
hydra/internal/certification/C.F.T.T.s/OP-redirect_uri-Query-Mismatch.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-redirect_uri-Query-Mismatch Test description: Rejects redirect_uri when query parameter does not match what is registed Timestamp: 2018-06-23T10:46:41Z ============================================================ Trace ou...
Text
hydra/internal/certification/C.F.T.T.s/OP-redirect_uri-Query-OK.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-redirect_uri-Query-OK Test description: Request with a redirect_uri with a query component when a redirect_uri with the same query component is registered Timestamp: 2018-06-23T10:46:52Z ===================================...
Text
hydra/internal/certification/C.F.T.T.s/OP-redirect_uri-RegFrag.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-redirect_uri-RegFrag Test description: Reject registration where a redirect_uri has a fragment Timestamp: 2018-06-23T10:46:54Z ============================================================ Trace output 0.0 phase <--<-- 0 ...
Text
hydra/internal/certification/C.F.T.T.s/OP-Registration-Dynamic.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Registration-Dynamic Test description: Client registration request Timestamp: 2018-06-23T10:43:26Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0 not...
Text
hydra/internal/certification/C.F.T.T.s/OP-Registration-Endpoint.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Registration-Endpoint Test description: Verify that registration_endpoint is published Timestamp: 2018-06-23T10:43:28Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webf...
Text
hydra/internal/certification/C.F.T.T.s/OP-Registration-jwks.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Registration-jwks Test description: Uses keys registered with jwks value Timestamp: 2018-06-23T10:43:33Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0...
Text
hydra/internal/certification/C.F.T.T.s/OP-Registration-jwks_uri.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Registration-jwks_uri Test description: Uses keys registered with jwks_uri value Timestamp: 2018-06-23T10:43:44Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger ...
Text
hydra/internal/certification/C.F.T.T.s/OP-Registration-logo_uri.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Registration-logo_uri Test description: Registration with logo_uri Timestamp: 2018-06-23T10:44:10Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Note -->--> 1.082 phase ...
Text
hydra/internal/certification/C.F.T.T.s/OP-Registration-policy_uri.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Registration-policy_uri Test description: Registration with policy_uri Timestamp: 2018-06-23T10:44:14Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Note -->--> 1.045 ph...
Text
hydra/internal/certification/C.F.T.T.s/OP-Registration-Sector-Bad.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Registration-Sector-Bad Test description: Incorrect registration of sector_identifier_uri Timestamp: 2018-06-23T10:43:29Z ============================================================ Trace output 0.0 phase <--<-- 0 --- W...
Text
hydra/internal/certification/C.F.T.T.s/OP-Registration-tos_uri.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Registration-tos_uri Test description: Registration with tos_uri Timestamp: 2018-06-23T10:44:04Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Note -->--> 1.09 phase <--...
Text
hydra/internal/certification/C.F.T.T.s/OP-Req-acr_values.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Req-acr_values Test description: Providing acr_values Timestamp: 2018-06-23T10:47:54Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0 not expected to ...
Text
hydra/internal/certification/C.F.T.T.s/OP-Req-claims_locales.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Req-claims_locales Test description: Providing claims_locales Timestamp: 2018-06-23T10:48:51Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Note -->--> 2.992 phase <--<-...
Text
hydra/internal/certification/C.F.T.T.s/OP-Req-id_token_hint.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Req-id_token_hint Test description: Using prompt=none with user hint through id_token_hint Timestamp: 2018-06-23T10:49:15Z ============================================================ Trace output 0.0 phase <--<-- 0 --- ...
Text
hydra/internal/certification/C.F.T.T.s/OP-Req-login_hint.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Req-login_hint Test description: Providing login_hint Timestamp: 2018-06-23T10:49:23Z ============================================================ Trace output 0.0 phase <--<-- 0 --- VerifyConfiguration -->--> 0.0 phase ...
Text
hydra/internal/certification/C.F.T.T.s/OP-Req-max_age=1.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Req-max_age=1 Test description: Requesting ID Token with max_age=1 seconds restriction Timestamp: 2018-06-23T10:49:38Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webf...
Text
hydra/internal/certification/C.F.T.T.s/OP-Req-max_age=10000.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Req-max_age=10000 Test description: Requesting ID Token with max_age=10000 seconds restriction Timestamp: 2018-06-23T10:49:44Z ============================================================ Trace output 0.0 phase <--<-- 0 ...
Text
hydra/internal/certification/C.F.T.T.s/OP-Req-NotUnderstood.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Req-NotUnderstood Test description: Request with extra query component Timestamp: 2018-06-23T10:47:50Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0...
Text
hydra/internal/certification/C.F.T.T.s/OP-Req-ui_locales.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Req-ui_locales Test description: Providing ui_locales Timestamp: 2018-06-23T10:49:51Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Note -->--> 1.153 phase <--<-- 1 --- ...
Text
hydra/internal/certification/C.F.T.T.s/OP-request-Unsigned.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-request-Unsigned Test description: Support request request parameter with unsigned request Timestamp: 2018-06-23T10:46:59Z ============================================================ Trace output 0.0 phase <--<-- 0 --- ...
Text
hydra/internal/certification/C.F.T.T.s/OP-request_uri-Sig.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-request_uri-Sig Test description: Support request_uri request parameter with signed request Timestamp: 2018-06-23T10:47:04Z ============================================================ Trace output 0.0 phase <--<-- 0 ---...
Text
hydra/internal/certification/C.F.T.T.s/OP-request_uri-Unsigned.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-request_uri-Unsigned Test description: Support request_uri request parameter with unsigned request Timestamp: 2018-06-23T10:47:09Z ============================================================ Trace output 0.0 phase <--<-...
Text
hydra/internal/certification/C.F.T.T.s/OP-Response-code.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Response-code Test description: Request with response_type=code Timestamp: 2018-06-23T10:43:16Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0 not ex...
Text
hydra/internal/certification/C.F.T.T.s/OP-Response-Missing.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Response-Missing Test description: Authorization request missing the response_type parameter Timestamp: 2018-06-23T10:43:08Z ============================================================ Trace output 0.0 phase <--<-- 0 --...
Text
hydra/internal/certification/C.F.T.T.s/OP-Rotation-OP-Sig.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Rotation-OP-Sig Test description: Can rotate OP signing keys Timestamp: 2018-06-23T10:51:00Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0 not expec...
Text
hydra/internal/certification/C.F.T.T.s/OP-Rotation-RP-Sig.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Rotation-RP-Sig Test description: Request access token, change RSA signing key and request another access token Timestamp: 2018-06-23T10:51:06Z ============================================================ Trace output 0....
Text
hydra/internal/certification/C.F.T.T.s/OP-scope-address.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-scope-address Test description: Scope requesting address claims Timestamp: 2018-06-23T10:47:20Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0 not ex...
Text
hydra/internal/certification/C.F.T.T.s/OP-scope-All.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-scope-All Test description: Scope requesting all claims Timestamp: 2018-06-23T10:47:15Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0 not expected t...
Text
hydra/internal/certification/C.F.T.T.s/OP-scope-email.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-scope-email Test description: Scope requesting email claims Timestamp: 2018-06-23T10:47:25Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0 not expect...
Text
hydra/internal/certification/C.F.T.T.s/OP-scope-phone.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-scope-phone Test description: Scope requesting phone claims Timestamp: 2018-06-23T10:47:28Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0 not expect...
Text
hydra/internal/certification/C.F.T.T.s/OP-scope-profile.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-scope-profile Test description: Scope requesting profile claims Timestamp: 2018-06-23T10:47:33Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0 not ex...
Text
hydra/internal/certification/C.F.T.T.s/OP-UserInfo-Body.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-UserInfo-Body Test description: UserInfo Endpoint access with POST and bearer body Timestamp: 2018-06-23T10:44:54Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinge...
Text
hydra/internal/certification/C.F.T.T.s/OP-UserInfo-Endpoint.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-UserInfo-Endpoint Test description: UserInfo Endpoint access with GET and bearer header Timestamp: 2018-06-23T10:45:03Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Web...
Text
hydra/internal/certification/C.F.T.T.s/OP-UserInfo-Header.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-UserInfo-Header Test description: UserInfo Endpoint access with POST and bearer header Timestamp: 2018-06-23T10:45:06Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webf...
Text
hydra/internal/certification/C.F.T.T.s/OP-UserInfo-RS256.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-UserInfo-RS256 Test description: RP registers userinfo_signed_response_alg to signal that it wants signed UserInfo returned Timestamp: 2018-06-23T10:45:10Z ============================================================ Trac...
Text
hydra/internal/certification/CI.F.T.T.s/OP-claims-essential.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-claims-essential Test description: Claims request with essential name claim Timestamp: 2018-06-23T10:53:03Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--...
Text
hydra/internal/certification/CI.F.T.T.s/OP-ClientAuth-Basic-Dynamic.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-ClientAuth-Basic-Dynamic Test description: Access token request with client_secret_basic authentication Timestamp: 2018-06-23T10:52:36Z ============================================================ Trace output 0.0 phase ...
Text
hydra/internal/certification/CI.F.T.T.s/OP-ClientAuth-SecretPost-Dynamic.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-ClientAuth-SecretPost-Dynamic Test description: Access token request with client_secret_post authentication Timestamp: 2018-06-23T10:52:40Z ============================================================ Trace output 0.0 ph...
Text
hydra/internal/certification/CI.F.T.T.s/OP-Discovery-claims_supported.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Discovery-claims_supported Test description: Verify that claims_supported is published Timestamp: 2018-06-23T10:51:45Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webf...
Text
hydra/internal/certification/CI.F.T.T.s/OP-Discovery-Config.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Discovery-Config Test description: Publishes openid-configuration discovery information Timestamp: 2018-06-23T10:51:42Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Web...
Text
hydra/internal/certification/CI.F.T.T.s/OP-Discovery-JWKs.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Discovery-JWKs Test description: Keys in OP JWKs well formed Timestamp: 2018-06-23T10:51:44Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0 not expec...
Text
hydra/internal/certification/CI.F.T.T.s/OP-Discovery-jwks_uri.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-Discovery-jwks_uri Test description: Verify that jwks_uri is published Timestamp: 2018-06-23T10:51:45Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0.0...
Text
hydra/internal/certification/CI.F.T.T.s/OP-display-page.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-display-page Test description: Request with display=page Timestamp: 2018-06-23T10:53:16Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Note -->--> 7.39 phase <--<-- 1 --...
Text
hydra/internal/certification/CI.F.T.T.s/OP-display-popup.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-display-popup Test description: Request with display=popup Timestamp: 2018-06-23T10:53:25Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Note -->--> 1.123 phase <--<-- 1...
Text
hydra/internal/certification/CI.F.T.T.s/OP-IDToken-C-Signature.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-IDToken-C-Signature Test description: Does the OP sign the ID Token and with what Timestamp: 2018-06-23T10:52:20Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger...
Text
hydra/internal/certification/CI.F.T.T.s/OP-IDToken-c_hash.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-IDToken-c_hash Test description: ID Token has c_hash when ID Token and Authorization Code returned from Authorization Endpoint [Hybrid] Timestamp: 2018-06-23T10:52:28Z ======================================================...
Text
hydra/internal/certification/CI.F.T.T.s/OP-IDToken-kid.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-IDToken-kid Test description: IDToken has kid [Basic, Implicit, Hybrid] Timestamp: 2018-06-23T10:52:32Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0....
Text
hydra/internal/certification/CI.F.T.T.s/OP-IDToken-RS256.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-IDToken-RS256 Test description: Asymmetric ID Token signature with RS256 Timestamp: 2018-06-23T10:52:24Z ============================================================ Trace output 0.0 phase <--<-- 0 --- Webfinger -->--> 0...
Text
hydra/internal/certification/CI.F.T.T.s/OP-nonce-noncode.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-nonce-noncode Test description: Request with nonce, verifies it was returned in ID Token [Implicit, Hybrid] Timestamp: 2018-06-23T10:53:35Z ============================================================ Trace output 0.0 ph...
Text
hydra/internal/certification/CI.F.T.T.s/OP-nonce-NoReq-noncode.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-nonce-NoReq-noncode Test description: Reject requests without nonce unless using the code flow Timestamp: 2018-06-23T10:53:31Z ============================================================ Trace output 0.0 phase <--<-- 0 ...
Text
hydra/internal/certification/CI.F.T.T.s/OP-OAuth-2nd-30s.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-OAuth-2nd-30s Test description: Trying to use authorization code twice with 30 seconds in between uses must result in an error Timestamp: 2018-06-23T10:58:01Z ============================================================ T...
Text
hydra/internal/certification/CI.F.T.T.s/OP-OAuth-2nd-Revokes.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-OAuth-2nd-Revokes Test description: Trying to use authorization code twice should result in revoking previously issued access tokens Timestamp: 2018-06-23T10:58:11Z =========================================================...
Text
hydra/internal/certification/CI.F.T.T.s/OP-OAuth-2nd.txt
Test tool version: 2.1.3 Issuer: https://oidc-certification.ory.sh:8443/ Profile: [] Test ID: OP-OAuth-2nd Test description: Trying to use authorization code twice should result in an error Timestamp: 2018-06-23T10:57:23Z ============================================================ Trace output 0.0 phase <--<-- 0 --...