├── .eslintrc.json ├── .github └── workflows │ ├── build-test-on-pr.yml │ ├── build-test-publish-on-push.yml │ └── sync-next-with-latest.yml ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── biome.json ├── docs └── preauthorized-code-flow.puml ├── lerna.json ├── package.json ├── packages ├── callback-example │ ├── CHANGELOG.md │ ├── lib │ │ ├── IssuerCallback.ts │ │ ├── __tests__ │ │ │ └── issuerCallback.spec.ts │ │ ├── index.ts │ │ └── modules.d.ts │ ├── package.json │ └── tsconfig.json ├── client │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── AccessTokenClient.ts │ │ ├── AuthorizationCodeClient.ts │ │ ├── AuthorizationDetailsBuilder.ts │ │ ├── CredentialOfferClient.ts │ │ ├── CredentialOfferClientV1_0_15.ts │ │ ├── CredentialRequestClient.ts │ │ ├── CredentialRequestClientBuilder.ts │ │ ├── CredentialRequestClientBuilderV1_0_15.ts │ │ ├── MetadataClient.ts │ │ ├── MetadataClientV1_0_15.ts │ │ ├── NonceClient.ts │ │ ├── OpenID4VCIClient.ts │ │ ├── OpenID4VCIClientV1_0_15.ts │ │ ├── ProofOfPossessionBuilder.ts │ │ ├── __tests__ │ │ │ ├── AccessTokenClient.spec.ts │ │ │ ├── AuthorizationDetailsBuilder.spec.ts │ │ │ ├── AuthzFlowType.spec.ts │ │ │ ├── CredentialRequestClientBuilder.spec.ts │ │ │ ├── CredentialRequestClientV1_0_15.spec.ts │ │ │ ├── EBSIE2E.spec.test.ts │ │ │ ├── HttpUtils.spec.ts │ │ │ ├── IT.spec.ts │ │ │ ├── IssuanceInitiation.spec.ts │ │ │ ├── IssuanceInitiationV1_0_15.spec.ts │ │ │ ├── JsonURIConversions.spec.ts │ │ │ ├── MattrE2E.spec.test.ts │ │ │ ├── MetadataClient.spec.ts │ │ │ ├── MetadataMocks.ts │ │ │ ├── OpenID4VCIClient.spec.ts │ │ │ ├── OpenID4VCIClientPARV1_0_15.spec.ts │ │ │ ├── OpenID4VCIClientV1_0_15.spec.ts │ │ │ ├── ProofOfPossessionBuilder.spec.ts │ │ │ ├── SdJwt.spec.ts │ │ │ ├── SphereonE2E.spec.test.ts │ │ │ └── data │ │ │ │ └── VciDataFixtures.ts │ │ ├── functions │ │ │ ├── AccessTokenUtil.ts │ │ │ ├── AuthorizationUtil.ts │ │ │ ├── CredentialOfferCommons.ts │ │ │ ├── OpenIDUtils.ts │ │ │ ├── dpopUtil.ts │ │ │ ├── index.ts │ │ │ └── notifications.ts │ │ ├── index.ts │ │ └── types │ │ │ └── index.ts │ ├── package.json │ └── tsconfig.json ├── common │ ├── CHANGELOG.md │ ├── LICENSE │ ├── lib │ │ ├── __tests__ │ │ │ └── dpop.spec.ts │ │ ├── dpop │ │ │ ├── DPoP.ts │ │ │ └── index.ts │ │ ├── hasher.ts │ │ ├── helpers │ │ │ └── Encodings.ts │ │ ├── index.ts │ │ ├── jwt │ │ │ ├── Jwk.types.ts │ │ │ ├── JwkThumbprint.ts │ │ │ ├── Jwt.types.ts │ │ │ ├── JwtIssuer.ts │ │ │ ├── JwtVerifier.ts │ │ │ ├── __tests__ │ │ │ │ ├── JwkThumbprint.spec.ts │ │ │ │ └── SdJwtMetadata.ts │ │ │ ├── index.ts │ │ │ └── jwtUtils.ts │ │ ├── oauth │ │ │ ├── DynamicClientRegistration.types.ts │ │ │ └── index.ts │ │ └── types │ │ │ ├── digest.types.ts │ │ │ └── index.ts │ ├── package.json │ └── tsconfig.json ├── did-auth-siop-adapter │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── DidJwtAdapter.ts │ │ ├── did │ │ │ ├── DIDResolution.ts │ │ │ ├── DidJWT.ts │ │ │ ├── LinkedDomainValidations.ts │ │ │ └── index.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── SIOP.types.ts │ │ │ ├── SSI.types.ts │ │ │ └── index.ts │ ├── package.json │ └── tsconfig.json ├── issuer-rest │ ├── .env │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── IssuerTokenEndpoint.ts │ │ ├── OID4VCIServer.ts │ │ ├── __tests__ │ │ │ ├── ClientIssuerIT.spec.ts │ │ │ ├── IssuerTokenServer.spec.ts │ │ │ ├── authorizationChallengeCodeServer.spec.ts │ │ │ └── nonceEndpoint.spec.ts │ │ ├── expressUtils.ts │ │ ├── index.ts │ │ └── oid4vci-api-functions.ts │ ├── package.json │ └── tsconfig.json ├── issuer │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── VcIssuer.ts │ │ ├── __tests__ │ │ │ ├── CredentialOfferUtils.spec.ts │ │ │ ├── MemoryCNonceStateManager.spec.ts │ │ │ ├── MemoryCredentialOfferStateManager.spec.ts │ │ │ ├── VcIssuer.spec.ts │ │ │ └── VcIssuerBuilder.spec.ts │ │ ├── builder │ │ │ ├── AuthorizationServerMetadataBuilder.ts │ │ │ ├── CredentialSupportedBuilderV1_15.ts │ │ │ ├── DisplayBuilder.ts │ │ │ ├── IssuerMetadataBuilderV1_15.ts │ │ │ ├── VcIssuerBuilder.ts │ │ │ └── index.ts │ │ ├── functions │ │ │ ├── ASOidcClient.ts │ │ │ ├── CredentialOfferUtils.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── state-manager │ │ │ ├── CredentialOfferStateBuilder.ts │ │ │ ├── LookupStateManager.ts │ │ │ ├── MemoryStates.ts │ │ │ └── index.ts │ │ ├── tokens │ │ │ └── index.ts │ │ └── types │ │ │ └── index.ts │ ├── package.json │ └── tsconfig.json ├── jarm │ ├── CHANGELOG.md │ ├── LICENSE │ ├── lib │ │ ├── __tests__ │ │ │ └── jarm.spec.ts │ │ ├── index.ts │ │ ├── jarm-auth-response-send │ │ │ ├── index.ts │ │ │ └── jarm-auth-response-send.ts │ │ ├── jarm-auth-response │ │ │ ├── c-jarm-auth-response.ts │ │ │ ├── index.ts │ │ │ ├── jarm-auth-response.ts │ │ │ ├── v-jarm-auth-response-params.ts │ │ │ └── v-jarm-direct-post-jwt-auth-response-params.ts │ │ ├── metadata │ │ │ ├── index.ts │ │ │ ├── jarm-validate-metadata.ts │ │ │ ├── v-jarm-client-metadata.ts │ │ │ └── v-jarm-server-metadata.ts │ │ ├── utils.ts │ │ ├── v-response-mode-registry.ts │ │ └── v-response-type-registry.ts │ ├── package.json │ └── tsconfig.json ├── oid4vci-common │ ├── CHANGELOG.md │ ├── LICENSE │ ├── lib │ │ ├── __tests__ │ │ │ ├── CredentialOfferUtil.spec.ts │ │ │ ├── Encoding.spec.ts │ │ │ ├── IssuerMetadataUtils.spec.ts │ │ │ └── randomBytes.spec.ts │ │ ├── events │ │ │ └── index.ts │ │ ├── experimental │ │ │ └── holder-vci.ts │ │ ├── functions │ │ │ ├── AuthorizationResponseUtil.ts │ │ │ ├── CredentialOfferUtil.ts │ │ │ ├── CredentialRequestUtil.ts │ │ │ ├── CredentialResponseUtil.ts │ │ │ ├── Encoding.ts │ │ │ ├── FormatUtils.ts │ │ │ ├── HttpUtils.ts │ │ │ ├── IssuerMetadataUtils.ts │ │ │ ├── ProofUtil.ts │ │ │ ├── RandomUtils.ts │ │ │ ├── TypeConversionUtils.ts │ │ │ ├── index.ts │ │ │ └── randomBytes.cjs │ │ ├── index.ts │ │ └── types │ │ │ ├── Authorization.types.ts │ │ │ ├── CredentialIssuance.types.ts │ │ │ ├── Generic.types.ts │ │ │ ├── OpenID4VCIErrors.ts │ │ │ ├── OpenID4VCIVersions.types.ts │ │ │ ├── OpenIDClient.ts │ │ │ ├── QRCode.types.ts │ │ │ ├── ServerMetadata.ts │ │ │ ├── StateManager.types.ts │ │ │ ├── Token.types.ts │ │ │ ├── index.ts │ │ │ └── v1_0_15.types.ts │ ├── package.json │ └── tsconfig.json └── siop-oid4vp │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── docs │ ├── auth-flow.md │ ├── auth-flow.puml │ ├── didjwt-class-diagram.md │ ├── eosio-dids-testnet.md │ ├── gimly-logo.png │ ├── presentation-exchange.puml │ ├── services-class-diagram.md │ ├── services-class-diagram.svg │ └── walk-through.md │ ├── jest.json │ ├── lib │ ├── __tests__ │ │ ├── AuthenticationRequest.request.spec.ts │ │ ├── AuthenticationRequest.verify.spec.ts │ │ ├── AuthenticationResponse.response.spec.ts │ │ ├── AuthenticationResponse.verify.spec.ts │ │ ├── DidJwtTestUtils.ts │ │ ├── HttpUtils.fetch.spec.ts │ │ ├── IT.spec.ts │ │ ├── MsoMdoc.spec.ts │ │ ├── OP.request.spec.ts │ │ ├── RP.request.spec.ts │ │ ├── RequestObjectJwtVerifier.test.ts │ │ ├── ResolverTestUtils.ts │ │ ├── SdJwt.spec.ts │ │ ├── TestUtils.ts │ │ ├── data │ │ │ └── mockedData.ts │ │ ├── e2e │ │ │ ├── EBSI.spec.ts │ │ │ └── mattr.launchpad.spec.ts │ │ ├── functions │ │ │ ├── DidSiopMetadata.spec.ts │ │ │ ├── Encodings.spec.ts │ │ │ └── LanguageTagUtils.spec.ts │ │ ├── interop │ │ │ ├── EBSI │ │ │ │ └── EBSI.spec.ts │ │ │ ├── auth0 │ │ │ │ ├── auth0.spec.ts │ │ │ │ └── fixtures.ts │ │ │ └── mattr │ │ │ │ └── fixtures.ts │ │ └── regressions │ │ │ └── ClientIdIsObject.spec.ts │ ├── authorization-request │ │ ├── AuthorizationRequest.ts │ │ ├── Opts.ts │ │ ├── Payload.ts │ │ ├── RequestRegistration.ts │ │ ├── URI.ts │ │ ├── index.ts │ │ └── types.ts │ ├── authorization-response │ │ ├── AuthorizationResponse.ts │ │ ├── Dcql.ts │ │ ├── OpenID4VP.ts │ │ ├── Opts.ts │ │ ├── Payload.ts │ │ ├── ResponseRegistration.ts │ │ ├── index.ts │ │ └── types.ts │ ├── generator │ │ └── schemaGenerator.cts │ ├── helpers │ │ ├── ClientIdentifierUtils.ts │ │ ├── Encodings.ts │ │ ├── ExtractJwks.ts │ │ ├── HttpUtils.ts │ │ ├── LanguageTagUtils.ts │ │ ├── Metadata.ts │ │ ├── ObjectUtils.ts │ │ ├── Revocation.ts │ │ ├── SIOPSpecVersion.ts │ │ ├── State.ts │ │ └── index.ts │ ├── id-token │ │ ├── IDToken.ts │ │ ├── Payload.ts │ │ └── index.ts │ ├── index.ts │ ├── op │ │ ├── OP.ts │ │ ├── OPBuilder.ts │ │ ├── Opts.ts │ │ └── index.ts │ ├── request-object │ │ ├── Opts.ts │ │ ├── Payload.ts │ │ ├── RequestObject.ts │ │ ├── index.ts │ │ └── types.ts │ ├── rp │ │ ├── InMemoryRPSessionManager.ts │ │ ├── Opts.ts │ │ ├── RP.ts │ │ ├── RPBuilder.ts │ │ ├── index.ts │ │ └── types.ts │ ├── schemas │ │ ├── AuthorizationRequestPayloadD28.schema.ts │ │ ├── AuthorizationRequestPayloadV1.schema.ts │ │ ├── AuthorizationResponseOpts.schema.ts │ │ ├── DiscoveryMetadataPayload.schema.ts │ │ ├── RPRegistrationMetadataPayload.schema.ts │ │ ├── index.ts │ │ ├── universal-oid4vp │ │ │ └── index.ts │ │ └── validation │ │ │ └── index.ts │ └── types │ │ ├── Errors.ts │ │ ├── Events.ts │ │ ├── JWT.types.ts │ │ ├── Json.types.ts │ │ ├── Revocation.types.ts │ │ ├── SIOP.types.ts │ │ ├── SessionManager.ts │ │ ├── VpJwtIssuer.ts │ │ ├── VpJwtVerifier.ts │ │ └── index.ts │ ├── package.json │ ├── tsconfig.json │ └── tsconfig.tsup.json ├── patches ├── dcql@1.0.1.patch └── did-jwt@6.11.6.patch ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── tsconfig.base.json ├── tsconfig.json ├── tsconfig.tsup.json ├── tsup.config.ts ├── turbo.json └── vitest.config.mts /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/build-test-on-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/.github/workflows/build-test-on-pr.yml -------------------------------------------------------------------------------- /.github/workflows/build-test-publish-on-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/.github/workflows/build-test-publish-on-push.yml -------------------------------------------------------------------------------- /.github/workflows/sync-next-with-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/.github/workflows/sync-next-with-latest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/.prettierignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/biome.json -------------------------------------------------------------------------------- /docs/preauthorized-code-flow.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/docs/preauthorized-code-flow.puml -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/package.json -------------------------------------------------------------------------------- /packages/callback-example/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/callback-example/CHANGELOG.md -------------------------------------------------------------------------------- /packages/callback-example/lib/IssuerCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/callback-example/lib/IssuerCallback.ts -------------------------------------------------------------------------------- /packages/callback-example/lib/__tests__/issuerCallback.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/callback-example/lib/__tests__/issuerCallback.spec.ts -------------------------------------------------------------------------------- /packages/callback-example/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/callback-example/lib/index.ts -------------------------------------------------------------------------------- /packages/callback-example/lib/modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/callback-example/lib/modules.d.ts -------------------------------------------------------------------------------- /packages/callback-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/callback-example/package.json -------------------------------------------------------------------------------- /packages/callback-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/callback-example/tsconfig.json -------------------------------------------------------------------------------- /packages/client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/CHANGELOG.md -------------------------------------------------------------------------------- /packages/client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/LICENSE -------------------------------------------------------------------------------- /packages/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/README.md -------------------------------------------------------------------------------- /packages/client/lib/AccessTokenClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/AccessTokenClient.ts -------------------------------------------------------------------------------- /packages/client/lib/AuthorizationCodeClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/AuthorizationCodeClient.ts -------------------------------------------------------------------------------- /packages/client/lib/AuthorizationDetailsBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/AuthorizationDetailsBuilder.ts -------------------------------------------------------------------------------- /packages/client/lib/CredentialOfferClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/CredentialOfferClient.ts -------------------------------------------------------------------------------- /packages/client/lib/CredentialOfferClientV1_0_15.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/CredentialOfferClientV1_0_15.ts -------------------------------------------------------------------------------- /packages/client/lib/CredentialRequestClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/CredentialRequestClient.ts -------------------------------------------------------------------------------- /packages/client/lib/CredentialRequestClientBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/CredentialRequestClientBuilder.ts -------------------------------------------------------------------------------- /packages/client/lib/CredentialRequestClientBuilderV1_0_15.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/CredentialRequestClientBuilderV1_0_15.ts -------------------------------------------------------------------------------- /packages/client/lib/MetadataClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/MetadataClient.ts -------------------------------------------------------------------------------- /packages/client/lib/MetadataClientV1_0_15.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/MetadataClientV1_0_15.ts -------------------------------------------------------------------------------- /packages/client/lib/NonceClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/NonceClient.ts -------------------------------------------------------------------------------- /packages/client/lib/OpenID4VCIClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/OpenID4VCIClient.ts -------------------------------------------------------------------------------- /packages/client/lib/OpenID4VCIClientV1_0_15.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/OpenID4VCIClientV1_0_15.ts -------------------------------------------------------------------------------- /packages/client/lib/ProofOfPossessionBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/ProofOfPossessionBuilder.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/AccessTokenClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/AccessTokenClient.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/AuthorizationDetailsBuilder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/AuthorizationDetailsBuilder.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/AuthzFlowType.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/AuthzFlowType.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/CredentialRequestClientBuilder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/CredentialRequestClientBuilder.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/CredentialRequestClientV1_0_15.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/CredentialRequestClientV1_0_15.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/EBSIE2E.spec.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/EBSIE2E.spec.test.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/HttpUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/HttpUtils.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/IT.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/IT.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/IssuanceInitiation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/IssuanceInitiation.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/IssuanceInitiationV1_0_15.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/IssuanceInitiationV1_0_15.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/JsonURIConversions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/JsonURIConversions.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/MattrE2E.spec.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/MattrE2E.spec.test.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/MetadataClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/MetadataClient.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/MetadataMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/MetadataMocks.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/OpenID4VCIClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/OpenID4VCIClient.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/OpenID4VCIClientPARV1_0_15.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/OpenID4VCIClientPARV1_0_15.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/OpenID4VCIClientV1_0_15.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/OpenID4VCIClientV1_0_15.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/ProofOfPossessionBuilder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/ProofOfPossessionBuilder.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/SdJwt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/SdJwt.spec.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/SphereonE2E.spec.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/SphereonE2E.spec.test.ts -------------------------------------------------------------------------------- /packages/client/lib/__tests__/data/VciDataFixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/__tests__/data/VciDataFixtures.ts -------------------------------------------------------------------------------- /packages/client/lib/functions/AccessTokenUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/functions/AccessTokenUtil.ts -------------------------------------------------------------------------------- /packages/client/lib/functions/AuthorizationUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/functions/AuthorizationUtil.ts -------------------------------------------------------------------------------- /packages/client/lib/functions/CredentialOfferCommons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/functions/CredentialOfferCommons.ts -------------------------------------------------------------------------------- /packages/client/lib/functions/OpenIDUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/functions/OpenIDUtils.ts -------------------------------------------------------------------------------- /packages/client/lib/functions/dpopUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/functions/dpopUtil.ts -------------------------------------------------------------------------------- /packages/client/lib/functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/functions/index.ts -------------------------------------------------------------------------------- /packages/client/lib/functions/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/functions/notifications.ts -------------------------------------------------------------------------------- /packages/client/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/index.ts -------------------------------------------------------------------------------- /packages/client/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/lib/types/index.ts -------------------------------------------------------------------------------- /packages/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/package.json -------------------------------------------------------------------------------- /packages/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/client/tsconfig.json -------------------------------------------------------------------------------- /packages/common/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/CHANGELOG.md -------------------------------------------------------------------------------- /packages/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/LICENSE -------------------------------------------------------------------------------- /packages/common/lib/__tests__/dpop.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/__tests__/dpop.spec.ts -------------------------------------------------------------------------------- /packages/common/lib/dpop/DPoP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/dpop/DPoP.ts -------------------------------------------------------------------------------- /packages/common/lib/dpop/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DPoP' 2 | -------------------------------------------------------------------------------- /packages/common/lib/hasher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/hasher.ts -------------------------------------------------------------------------------- /packages/common/lib/helpers/Encodings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/helpers/Encodings.ts -------------------------------------------------------------------------------- /packages/common/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/index.ts -------------------------------------------------------------------------------- /packages/common/lib/jwt/Jwk.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/jwt/Jwk.types.ts -------------------------------------------------------------------------------- /packages/common/lib/jwt/JwkThumbprint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/jwt/JwkThumbprint.ts -------------------------------------------------------------------------------- /packages/common/lib/jwt/Jwt.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/jwt/Jwt.types.ts -------------------------------------------------------------------------------- /packages/common/lib/jwt/JwtIssuer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/jwt/JwtIssuer.ts -------------------------------------------------------------------------------- /packages/common/lib/jwt/JwtVerifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/jwt/JwtVerifier.ts -------------------------------------------------------------------------------- /packages/common/lib/jwt/__tests__/JwkThumbprint.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/jwt/__tests__/JwkThumbprint.spec.ts -------------------------------------------------------------------------------- /packages/common/lib/jwt/__tests__/SdJwtMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/jwt/__tests__/SdJwtMetadata.ts -------------------------------------------------------------------------------- /packages/common/lib/jwt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/jwt/index.ts -------------------------------------------------------------------------------- /packages/common/lib/jwt/jwtUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/jwt/jwtUtils.ts -------------------------------------------------------------------------------- /packages/common/lib/oauth/DynamicClientRegistration.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/oauth/DynamicClientRegistration.types.ts -------------------------------------------------------------------------------- /packages/common/lib/oauth/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DynamicClientRegistration.types' 2 | -------------------------------------------------------------------------------- /packages/common/lib/types/digest.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/lib/types/digest.types.ts -------------------------------------------------------------------------------- /packages/common/lib/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from './digest.types' 2 | -------------------------------------------------------------------------------- /packages/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/package.json -------------------------------------------------------------------------------- /packages/common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/common/tsconfig.json -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/LICENSE -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/README.md -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/lib/DidJwtAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/lib/DidJwtAdapter.ts -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/lib/did/DIDResolution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/lib/did/DIDResolution.ts -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/lib/did/DidJWT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/lib/did/DidJWT.ts -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/lib/did/LinkedDomainValidations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/lib/did/LinkedDomainValidations.ts -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/lib/did/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/lib/did/index.ts -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/lib/helpers.ts -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/lib/index.ts -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/lib/types/SIOP.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/lib/types/SIOP.types.ts -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/lib/types/SSI.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/lib/types/SSI.types.ts -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/lib/types/index.ts -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/package.json -------------------------------------------------------------------------------- /packages/did-auth-siop-adapter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/did-auth-siop-adapter/tsconfig.json -------------------------------------------------------------------------------- /packages/issuer-rest/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/.env -------------------------------------------------------------------------------- /packages/issuer-rest/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/CHANGELOG.md -------------------------------------------------------------------------------- /packages/issuer-rest/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/issuer-rest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/README.md -------------------------------------------------------------------------------- /packages/issuer-rest/lib/IssuerTokenEndpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/lib/IssuerTokenEndpoint.ts -------------------------------------------------------------------------------- /packages/issuer-rest/lib/OID4VCIServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/lib/OID4VCIServer.ts -------------------------------------------------------------------------------- /packages/issuer-rest/lib/__tests__/ClientIssuerIT.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/lib/__tests__/ClientIssuerIT.spec.ts -------------------------------------------------------------------------------- /packages/issuer-rest/lib/__tests__/IssuerTokenServer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/lib/__tests__/IssuerTokenServer.spec.ts -------------------------------------------------------------------------------- /packages/issuer-rest/lib/__tests__/authorizationChallengeCodeServer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/lib/__tests__/authorizationChallengeCodeServer.spec.ts -------------------------------------------------------------------------------- /packages/issuer-rest/lib/__tests__/nonceEndpoint.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/lib/__tests__/nonceEndpoint.spec.ts -------------------------------------------------------------------------------- /packages/issuer-rest/lib/expressUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/lib/expressUtils.ts -------------------------------------------------------------------------------- /packages/issuer-rest/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/lib/index.ts -------------------------------------------------------------------------------- /packages/issuer-rest/lib/oid4vci-api-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/lib/oid4vci-api-functions.ts -------------------------------------------------------------------------------- /packages/issuer-rest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/package.json -------------------------------------------------------------------------------- /packages/issuer-rest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer-rest/tsconfig.json -------------------------------------------------------------------------------- /packages/issuer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/CHANGELOG.md -------------------------------------------------------------------------------- /packages/issuer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/LICENSE -------------------------------------------------------------------------------- /packages/issuer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/README.md -------------------------------------------------------------------------------- /packages/issuer/lib/VcIssuer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/VcIssuer.ts -------------------------------------------------------------------------------- /packages/issuer/lib/__tests__/CredentialOfferUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/__tests__/CredentialOfferUtils.spec.ts -------------------------------------------------------------------------------- /packages/issuer/lib/__tests__/MemoryCNonceStateManager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/__tests__/MemoryCNonceStateManager.spec.ts -------------------------------------------------------------------------------- /packages/issuer/lib/__tests__/MemoryCredentialOfferStateManager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/__tests__/MemoryCredentialOfferStateManager.spec.ts -------------------------------------------------------------------------------- /packages/issuer/lib/__tests__/VcIssuer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/__tests__/VcIssuer.spec.ts -------------------------------------------------------------------------------- /packages/issuer/lib/__tests__/VcIssuerBuilder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/__tests__/VcIssuerBuilder.spec.ts -------------------------------------------------------------------------------- /packages/issuer/lib/builder/AuthorizationServerMetadataBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/builder/AuthorizationServerMetadataBuilder.ts -------------------------------------------------------------------------------- /packages/issuer/lib/builder/CredentialSupportedBuilderV1_15.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/builder/CredentialSupportedBuilderV1_15.ts -------------------------------------------------------------------------------- /packages/issuer/lib/builder/DisplayBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/builder/DisplayBuilder.ts -------------------------------------------------------------------------------- /packages/issuer/lib/builder/IssuerMetadataBuilderV1_15.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/builder/IssuerMetadataBuilderV1_15.ts -------------------------------------------------------------------------------- /packages/issuer/lib/builder/VcIssuerBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/builder/VcIssuerBuilder.ts -------------------------------------------------------------------------------- /packages/issuer/lib/builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/builder/index.ts -------------------------------------------------------------------------------- /packages/issuer/lib/functions/ASOidcClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/functions/ASOidcClient.ts -------------------------------------------------------------------------------- /packages/issuer/lib/functions/CredentialOfferUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/functions/CredentialOfferUtils.ts -------------------------------------------------------------------------------- /packages/issuer/lib/functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/functions/index.ts -------------------------------------------------------------------------------- /packages/issuer/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/index.ts -------------------------------------------------------------------------------- /packages/issuer/lib/state-manager/CredentialOfferStateBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/state-manager/CredentialOfferStateBuilder.ts -------------------------------------------------------------------------------- /packages/issuer/lib/state-manager/LookupStateManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/state-manager/LookupStateManager.ts -------------------------------------------------------------------------------- /packages/issuer/lib/state-manager/MemoryStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/state-manager/MemoryStates.ts -------------------------------------------------------------------------------- /packages/issuer/lib/state-manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/state-manager/index.ts -------------------------------------------------------------------------------- /packages/issuer/lib/tokens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/tokens/index.ts -------------------------------------------------------------------------------- /packages/issuer/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/lib/types/index.ts -------------------------------------------------------------------------------- /packages/issuer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/package.json -------------------------------------------------------------------------------- /packages/issuer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/issuer/tsconfig.json -------------------------------------------------------------------------------- /packages/jarm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/CHANGELOG.md -------------------------------------------------------------------------------- /packages/jarm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/LICENSE -------------------------------------------------------------------------------- /packages/jarm/lib/__tests__/jarm.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/__tests__/jarm.spec.ts -------------------------------------------------------------------------------- /packages/jarm/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/index.ts -------------------------------------------------------------------------------- /packages/jarm/lib/jarm-auth-response-send/index.ts: -------------------------------------------------------------------------------- 1 | export * from './jarm-auth-response-send' 2 | -------------------------------------------------------------------------------- /packages/jarm/lib/jarm-auth-response-send/jarm-auth-response-send.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/jarm-auth-response-send/jarm-auth-response-send.ts -------------------------------------------------------------------------------- /packages/jarm/lib/jarm-auth-response/c-jarm-auth-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/jarm-auth-response/c-jarm-auth-response.ts -------------------------------------------------------------------------------- /packages/jarm/lib/jarm-auth-response/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/jarm-auth-response/index.ts -------------------------------------------------------------------------------- /packages/jarm/lib/jarm-auth-response/jarm-auth-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/jarm-auth-response/jarm-auth-response.ts -------------------------------------------------------------------------------- /packages/jarm/lib/jarm-auth-response/v-jarm-auth-response-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/jarm-auth-response/v-jarm-auth-response-params.ts -------------------------------------------------------------------------------- /packages/jarm/lib/jarm-auth-response/v-jarm-direct-post-jwt-auth-response-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/jarm-auth-response/v-jarm-direct-post-jwt-auth-response-params.ts -------------------------------------------------------------------------------- /packages/jarm/lib/metadata/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/metadata/index.ts -------------------------------------------------------------------------------- /packages/jarm/lib/metadata/jarm-validate-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/metadata/jarm-validate-metadata.ts -------------------------------------------------------------------------------- /packages/jarm/lib/metadata/v-jarm-client-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/metadata/v-jarm-client-metadata.ts -------------------------------------------------------------------------------- /packages/jarm/lib/metadata/v-jarm-server-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/metadata/v-jarm-server-metadata.ts -------------------------------------------------------------------------------- /packages/jarm/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/utils.ts -------------------------------------------------------------------------------- /packages/jarm/lib/v-response-mode-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/v-response-mode-registry.ts -------------------------------------------------------------------------------- /packages/jarm/lib/v-response-type-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/lib/v-response-type-registry.ts -------------------------------------------------------------------------------- /packages/jarm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/jarm/package.json -------------------------------------------------------------------------------- /packages/jarm/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/oid4vci-common/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/CHANGELOG.md -------------------------------------------------------------------------------- /packages/oid4vci-common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/LICENSE -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/__tests__/CredentialOfferUtil.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/__tests__/CredentialOfferUtil.spec.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/__tests__/Encoding.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/__tests__/Encoding.spec.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/__tests__/IssuerMetadataUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/__tests__/IssuerMetadataUtils.spec.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/__tests__/randomBytes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/__tests__/randomBytes.spec.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/events/index.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/experimental/holder-vci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/experimental/holder-vci.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/functions/AuthorizationResponseUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/functions/AuthorizationResponseUtil.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/functions/CredentialOfferUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/functions/CredentialOfferUtil.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/functions/CredentialRequestUtil.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/functions/CredentialResponseUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/functions/CredentialResponseUtil.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/functions/Encoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/functions/Encoding.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/functions/FormatUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/functions/FormatUtils.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/functions/HttpUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/functions/HttpUtils.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/functions/IssuerMetadataUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/functions/IssuerMetadataUtils.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/functions/ProofUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/functions/ProofUtil.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/functions/RandomUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/functions/RandomUtils.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/functions/TypeConversionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/functions/TypeConversionUtils.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/functions/index.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/functions/randomBytes.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/functions/randomBytes.cjs -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/index.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/types/Authorization.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/types/Authorization.types.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/types/CredentialIssuance.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/types/CredentialIssuance.types.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/types/Generic.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/types/Generic.types.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/types/OpenID4VCIErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/types/OpenID4VCIErrors.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/types/OpenID4VCIVersions.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/types/OpenID4VCIVersions.types.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/types/OpenIDClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/types/OpenIDClient.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/types/QRCode.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/types/QRCode.types.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/types/ServerMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/types/ServerMetadata.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/types/StateManager.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/types/StateManager.types.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/types/Token.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/types/Token.types.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/types/index.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/lib/types/v1_0_15.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/lib/types/v1_0_15.types.ts -------------------------------------------------------------------------------- /packages/oid4vci-common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/package.json -------------------------------------------------------------------------------- /packages/oid4vci-common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/oid4vci-common/tsconfig.json -------------------------------------------------------------------------------- /packages/siop-oid4vp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/CHANGELOG.md -------------------------------------------------------------------------------- /packages/siop-oid4vp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/LICENSE -------------------------------------------------------------------------------- /packages/siop-oid4vp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/README.md -------------------------------------------------------------------------------- /packages/siop-oid4vp/docs/auth-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/docs/auth-flow.md -------------------------------------------------------------------------------- /packages/siop-oid4vp/docs/auth-flow.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/docs/auth-flow.puml -------------------------------------------------------------------------------- /packages/siop-oid4vp/docs/didjwt-class-diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/docs/didjwt-class-diagram.md -------------------------------------------------------------------------------- /packages/siop-oid4vp/docs/eosio-dids-testnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/docs/eosio-dids-testnet.md -------------------------------------------------------------------------------- /packages/siop-oid4vp/docs/gimly-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/docs/gimly-logo.png -------------------------------------------------------------------------------- /packages/siop-oid4vp/docs/presentation-exchange.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/docs/presentation-exchange.puml -------------------------------------------------------------------------------- /packages/siop-oid4vp/docs/services-class-diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/docs/services-class-diagram.md -------------------------------------------------------------------------------- /packages/siop-oid4vp/docs/services-class-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/docs/services-class-diagram.svg -------------------------------------------------------------------------------- /packages/siop-oid4vp/docs/walk-through.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/siop-oid4vp/jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/jest.json -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/AuthenticationRequest.request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/AuthenticationRequest.request.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/AuthenticationRequest.verify.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/AuthenticationRequest.verify.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/AuthenticationResponse.response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/AuthenticationResponse.response.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/AuthenticationResponse.verify.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/AuthenticationResponse.verify.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/DidJwtTestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/DidJwtTestUtils.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/HttpUtils.fetch.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/HttpUtils.fetch.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/IT.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/IT.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/MsoMdoc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/MsoMdoc.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/OP.request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/OP.request.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/RP.request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/RP.request.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/RequestObjectJwtVerifier.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/RequestObjectJwtVerifier.test.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/ResolverTestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/ResolverTestUtils.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/SdJwt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/SdJwt.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/TestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/TestUtils.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/data/mockedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/data/mockedData.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/e2e/EBSI.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/e2e/EBSI.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/e2e/mattr.launchpad.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/e2e/mattr.launchpad.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/functions/DidSiopMetadata.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/functions/DidSiopMetadata.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/functions/Encodings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/functions/Encodings.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/functions/LanguageTagUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/functions/LanguageTagUtils.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/interop/EBSI/EBSI.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/interop/EBSI/EBSI.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/interop/auth0/auth0.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/interop/auth0/auth0.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/interop/auth0/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/interop/auth0/fixtures.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/interop/mattr/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/interop/mattr/fixtures.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/__tests__/regressions/ClientIdIsObject.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/__tests__/regressions/ClientIdIsObject.spec.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-request/AuthorizationRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-request/AuthorizationRequest.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-request/Opts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-request/Opts.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-request/Payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-request/Payload.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-request/RequestRegistration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-request/RequestRegistration.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-request/URI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-request/URI.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-request/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-request/index.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-request/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-request/types.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-response/AuthorizationResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-response/AuthorizationResponse.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-response/Dcql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-response/Dcql.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-response/OpenID4VP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-response/OpenID4VP.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-response/Opts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-response/Opts.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-response/Payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-response/Payload.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-response/ResponseRegistration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-response/ResponseRegistration.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-response/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-response/index.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/authorization-response/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/authorization-response/types.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/generator/schemaGenerator.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/generator/schemaGenerator.cts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/helpers/ClientIdentifierUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/helpers/ClientIdentifierUtils.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/helpers/Encodings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/helpers/Encodings.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/helpers/ExtractJwks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/helpers/ExtractJwks.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/helpers/HttpUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/helpers/HttpUtils.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/helpers/LanguageTagUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/helpers/LanguageTagUtils.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/helpers/Metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/helpers/Metadata.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/helpers/ObjectUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/helpers/ObjectUtils.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/helpers/Revocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/helpers/Revocation.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/helpers/SIOPSpecVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/helpers/SIOPSpecVersion.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/helpers/State.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/helpers/State.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/helpers/index.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/id-token/IDToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/id-token/IDToken.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/id-token/Payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/id-token/Payload.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/id-token/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/id-token/index.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/index.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/op/OP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/op/OP.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/op/OPBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/op/OPBuilder.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/op/Opts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/op/Opts.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/op/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/op/index.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/request-object/Opts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/request-object/Opts.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/request-object/Payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/request-object/Payload.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/request-object/RequestObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/request-object/RequestObject.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/request-object/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/request-object/index.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/request-object/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/request-object/types.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/rp/InMemoryRPSessionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/rp/InMemoryRPSessionManager.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/rp/Opts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/rp/Opts.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/rp/RP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/rp/RP.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/rp/RPBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/rp/RPBuilder.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/rp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/rp/index.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/rp/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/rp/types.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/schemas/AuthorizationRequestPayloadD28.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/schemas/AuthorizationRequestPayloadD28.schema.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/schemas/AuthorizationRequestPayloadV1.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/schemas/AuthorizationRequestPayloadV1.schema.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/schemas/AuthorizationResponseOpts.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/schemas/AuthorizationResponseOpts.schema.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/schemas/DiscoveryMetadataPayload.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/schemas/DiscoveryMetadataPayload.schema.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/schemas/RPRegistrationMetadataPayload.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/schemas/RPRegistrationMetadataPayload.schema.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/schemas/index.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/schemas/universal-oid4vp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/schemas/universal-oid4vp/index.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/schemas/validation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/schemas/validation/index.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/types/Errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/types/Errors.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/types/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/types/Events.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/types/JWT.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/types/JWT.types.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/types/Json.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/types/Json.types.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/types/Revocation.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/types/Revocation.types.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/types/SIOP.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/types/SIOP.types.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/types/SessionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/types/SessionManager.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/types/VpJwtIssuer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/types/VpJwtIssuer.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/types/VpJwtVerifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/types/VpJwtVerifier.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/lib/types/index.ts -------------------------------------------------------------------------------- /packages/siop-oid4vp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/package.json -------------------------------------------------------------------------------- /packages/siop-oid4vp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/tsconfig.json -------------------------------------------------------------------------------- /packages/siop-oid4vp/tsconfig.tsup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/packages/siop-oid4vp/tsconfig.tsup.json -------------------------------------------------------------------------------- /patches/dcql@1.0.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/patches/dcql@1.0.1.patch -------------------------------------------------------------------------------- /patches/did-jwt@6.11.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/patches/did-jwt@6.11.6.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.tsup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/tsconfig.tsup.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/turbo.json -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sphereon-Opensource/OID4VC/HEAD/vitest.config.mts --------------------------------------------------------------------------------