├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── settings.yml └── workflows │ └── publish-nuget.yaml ├── .gitignore ├── CodeMaid.config ├── Directory.Build.props ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── docker-compose.test.yaml ├── docker-compose.yaml ├── docker ├── commands.txt ├── docker_pool_genesis.txn ├── indy-pool.dockerfile ├── test-agent.dockerfile └── web-agent.dockerfile ├── docs ├── Makefile ├── _static │ ├── custom.css │ └── images │ │ ├── choose_template.png │ │ ├── configure_agent.png │ │ └── target_framework.png ├── _templates │ └── page.html ├── aspnetcore.rst ├── conf.py ├── docker.rst ├── errors.rst ├── gettingstarted.rst ├── index.rst ├── installation.rst ├── make.bat ├── payments.rst ├── quickstart.rst ├── samples.rst └── xamarin.rst ├── global.json ├── nuget.config ├── scripts ├── start-node-pool.sh ├── start-web-agents.sh ├── stop-node-pool.sh ├── tester.sh └── web-agents-ngrok-config.yaml ├── src ├── Hyperledger.Aries.AspNetCore.Contracts │ ├── .editorconfig │ ├── AssemblyAnnotations.cs │ ├── Features │ │ ├── Base │ │ │ ├── BaseApiRequest.cs │ │ │ ├── BaseRequest.cs │ │ │ └── BaseResponse.cs │ │ ├── BasicMessaging │ │ │ ├── FeatureAnnotations.cs │ │ │ └── SendMessage │ │ │ │ ├── SendMessageRequest.cs │ │ │ │ ├── SendMessageRequestValidator.cs │ │ │ │ └── SendMessageResponse.cs │ │ ├── Connection │ │ │ ├── AcceptInvitation │ │ │ │ ├── AcceptInvitationRequest.cs │ │ │ │ ├── AcceptInvitationRequestValidator.cs │ │ │ │ └── AcceptInvitationResponse.cs │ │ │ ├── CreateInvitation │ │ │ │ ├── CreateInvitationRequest.cs │ │ │ │ ├── CreateInvitationRequestValidator.cs │ │ │ │ └── CreateInvitationResponse.cs │ │ │ ├── DeleteConnection │ │ │ │ ├── DeleteConnectionRequest.cs │ │ │ │ ├── DeleteConnectionRequestValidator.cs │ │ │ │ └── DeleteConnectionResponse.cs │ │ │ ├── FeatureAnnotations.cs │ │ │ ├── GetConnection │ │ │ │ ├── GetConnectionRequest.cs │ │ │ │ ├── GetConnectionRequestValidator.cs │ │ │ │ └── GetConnectionResponse.cs │ │ │ ├── GetConnections │ │ │ │ ├── GetConnectionsRequest.cs │ │ │ │ ├── GetConnectionsRequestValidator.cs │ │ │ │ └── GetConnectionsResponse.cs │ │ │ ├── ReceiveInvitation │ │ │ │ ├── ReceiveInvitationRequest.cs │ │ │ │ ├── ReceiveInvitationRequestValidator.cs │ │ │ │ └── ReceiveInvitationResponse.cs │ │ │ ├── SendPing │ │ │ │ ├── SendPingRequest.cs │ │ │ │ ├── SendPingRequestValidator.cs │ │ │ │ └── SendPingResponse.cs │ │ │ └── _._ │ │ ├── Credential │ │ │ ├── FeatureAnnotations.cs │ │ │ ├── GetCredential │ │ │ │ ├── GetCredentialRequest.cs │ │ │ │ ├── GetCredentialRequestValidator.cs │ │ │ │ └── GetCredentialResponse.cs │ │ │ ├── GetCredentials │ │ │ │ ├── GetCredentialsRequest.cs │ │ │ │ ├── GetCredentialsRequestValidator.cs │ │ │ │ └── GetCredentialsResponse.cs │ │ │ └── RemoveCredential │ │ │ │ ├── RemoveCredentialRequest.cs │ │ │ │ ├── RemoveCredentialRequestValidator.cs │ │ │ │ └── RemoveCredentialResponse.cs │ │ ├── CredentialDefinition │ │ │ ├── CreateCredentialDefinition │ │ │ │ ├── CreateCredentialDefinitionRequest.cs │ │ │ │ ├── CreateCredentialDefinitionRequestValidator.cs │ │ │ │ └── CreateCredentialDefinitionResponse.cs │ │ │ ├── FeatureAnnotations.cs │ │ │ ├── GetCredentialDefinition │ │ │ │ ├── GetCredentialDefinitionRequest.cs │ │ │ │ ├── GetCredentialDefinitionRequestValidator.cs │ │ │ │ └── GetCredentialDefinitionResponse.cs │ │ │ └── GetCredentialDefinitions │ │ │ │ ├── GetCredentialDefinitionsRequest.cs │ │ │ │ ├── GetCredentialDefinitionsRequestValidator.cs │ │ │ │ └── GetCredentialDefinitionsResponse.cs │ │ ├── Infrastructure │ │ │ └── InternalsVisibleToClientAndServer.cs │ │ ├── Introduction │ │ │ └── _._ │ │ ├── IssueCredential │ │ │ ├── FeatureAnnotations.cs │ │ │ └── OfferCredential │ │ │ │ ├── OfferCredentialRequest.cs │ │ │ │ ├── OfferCredentialRequestValidator.cs │ │ │ │ └── OfferCredentialResponse.cs │ │ ├── Ledger │ │ │ └── _._ │ │ ├── PresentProof │ │ │ ├── AcceptProofRequest │ │ │ │ ├── AcceptProofRequestRequest.cs │ │ │ │ ├── AcceptProofRequestRequestValidator.cs │ │ │ │ └── AcceptProofRequestResponse.cs │ │ │ ├── CreateProof │ │ │ │ ├── CreateProofRequestRequest.cs │ │ │ │ ├── CreateProofRequestRequestValidator.cs │ │ │ │ └── CreateProofRequestResponse.cs │ │ │ ├── FeatureAnnotations.cs │ │ │ ├── GetCredentialsForProof │ │ │ │ ├── GetCredentialsForProofRequest.cs │ │ │ │ ├── GetCredentialsForProofRequestValidator.cs │ │ │ │ └── GetCredentialsForProofResponse.cs │ │ │ ├── GetProof │ │ │ │ ├── GetProofRequest.cs │ │ │ │ ├── GetProofRequestValidator.cs │ │ │ │ └── GetProofResponse.cs │ │ │ └── GetProofs │ │ │ │ ├── GetProofsRequest.cs │ │ │ │ ├── GetProofsRequestValidator.cs │ │ │ │ └── GetProofsResponse.cs │ │ ├── Revocation │ │ │ └── _._ │ │ ├── Schema │ │ │ ├── CreateSchema │ │ │ │ ├── CreateSchemaRequest.cs │ │ │ │ ├── CreateSchemaRequestValidator.cs │ │ │ │ └── CreateSchemaResponse.cs │ │ │ ├── FeatureAnnotations.cs │ │ │ ├── GetSchema │ │ │ │ ├── GetSchemaRequest.cs │ │ │ │ ├── GetSchemaRequestValidator.cs │ │ │ │ └── GetSchemaResponse.cs │ │ │ └── GetSchemas │ │ │ │ ├── GetSchemasRequest.cs │ │ │ │ ├── GetSchemasRequestValidator.cs │ │ │ │ └── GetSchemasResponse.cs │ │ ├── TrustPing │ │ │ └── _._ │ │ └── Wallet │ │ │ ├── FeatureAnnotations.cs │ │ │ ├── GetWallet │ │ │ ├── GetWalletRequest.cs │ │ │ ├── GetWalletRequestValidator.cs │ │ │ └── GetWalletResponse.cs │ │ │ └── ResetWallet │ │ │ ├── ResetWalletRequest.cs │ │ │ ├── ResetWalletRequestValidator.cs │ │ │ └── ResetWalletResponse.cs │ └── Hyperledger.Aries.AspNetCore.Contracts.csproj ├── Hyperledger.Aries.AspNetCore │ ├── .editorconfig │ ├── AgentMiddleware.cs │ ├── Extensions │ │ ├── ApplicationBuilderExtensions.cs │ │ ├── AriesOpenApiOptions.cs │ │ └── MvcBuilderExtensions.cs │ ├── Features │ │ ├── Base │ │ │ ├── BaseEndpoint.cs │ │ │ ├── BaseError.cs │ │ │ └── BaseException.cs │ │ ├── BasicMessage │ │ │ └── SendMessage │ │ │ │ ├── SendMessageEndpoint.cs │ │ │ │ └── SendMessageHandler.cs │ │ ├── Connection │ │ │ ├── AcceptInvitation │ │ │ │ ├── AcceptInvitationEndpoint.cs │ │ │ │ └── AcceptInvitationHandler.cs │ │ │ ├── CreateInvitation │ │ │ │ ├── CreateInvitationEndpoint.cs │ │ │ │ └── CreateInvitationHandler.cs │ │ │ ├── DeleteConnection │ │ │ │ ├── DeleteConnectionEndpoint.cs │ │ │ │ └── DeleteConnectionHandler.cs │ │ │ ├── GetConnection │ │ │ │ ├── GetConnectionEndpoint.cs │ │ │ │ └── GetConnectionHandler.cs │ │ │ ├── GetConnections │ │ │ │ ├── GetConnectionsEndpoint.cs │ │ │ │ └── GetConnectionsHandler.cs │ │ │ ├── ReceiveInvitation │ │ │ │ ├── ReceiveInvitationEndpoint.cs │ │ │ │ └── ReceiveInvitationHandler.cs │ │ │ └── SendPing │ │ │ │ ├── SendPingEndpoint.cs │ │ │ │ └── SendPingHandler.cs │ │ ├── Credential │ │ │ ├── GetCredential │ │ │ │ ├── GetCredentialEndpoint.cs │ │ │ │ └── GetCredentialHandler.cs │ │ │ ├── GetCredentials │ │ │ │ ├── GetCredentialsEndpoint.cs │ │ │ │ └── GetCredentialsHandler.cs │ │ │ └── RemoveCredential │ │ │ │ ├── RemoveCredentialEndpoint.cs │ │ │ │ └── RemoveCredentialHandler.cs │ │ ├── CredentialDefinition │ │ │ ├── CreateCredentialDefinition │ │ │ │ ├── CreateCredentialDefinitionEndpoint.cs │ │ │ │ └── CreateCredentialDefinitionHandler.cs │ │ │ ├── GetCredentialDefinition │ │ │ │ ├── GetCredentialDefinitionEndpoint.cs │ │ │ │ └── GetCredentialDefinitionHandler.cs │ │ │ └── GetCredentialDefinitions │ │ │ │ ├── GetCredentialDefinitionsEndpoint.cs │ │ │ │ └── GetCredentialDefinitionsHandler.cs │ │ ├── Introduction │ │ │ └── _._ │ │ ├── IssueCredential │ │ │ └── OfferCredential │ │ │ │ ├── OfferCredentialEndpoint.cs │ │ │ │ └── OfferCredentialHandler.cs │ │ ├── Ledger │ │ │ └── _._ │ │ ├── PresentProof │ │ │ ├── AcceptProofRequest │ │ │ │ ├── AcceptProofRequestEndpoint.cs │ │ │ │ └── AcceptProofRequestHandler.cs │ │ │ ├── CreateProofRequest │ │ │ │ ├── CreateProofRequestEndpoint.cs │ │ │ │ └── CreateProofRequestsHandler.cs │ │ │ ├── GetCredentialsForProof │ │ │ │ ├── GetCredentialsForProofEndpoint.cs │ │ │ │ └── GetCredentialsForProofHandler.cs │ │ │ ├── GetProof │ │ │ │ ├── GetProofEndpoint.cs │ │ │ │ └── GetProofHandler.cs │ │ │ └── GetProofs │ │ │ │ ├── GetProofsEndpoint.cs │ │ │ │ └── GetProofsHandler.cs │ │ ├── Revocation │ │ │ └── _._ │ │ ├── Schema │ │ │ ├── CreateSchema │ │ │ │ ├── CreateSchemaEndpoint.cs │ │ │ │ └── CreateSchemaHandler.cs │ │ │ ├── GetSchema │ │ │ │ ├── GetSchemaEndpoint.cs │ │ │ │ └── GetSchemaHandler.cs │ │ │ └── GetSchemas │ │ │ │ ├── GetSchemasEndpoint.cs │ │ │ │ └── GetSchemasHandler.cs │ │ ├── TrustPing │ │ │ └── _._ │ │ └── Wallet │ │ │ ├── GetWallet │ │ │ ├── GetWalletEndpoint.cs │ │ │ └── GetWalletHandler.cs │ │ │ └── ResetWallet │ │ │ ├── ResetWalletEndpoint.cs │ │ │ └── ResetWalletHandler.cs │ ├── Hyperledger.Aries.AspNetCore.csproj │ └── TailsMiddleware.cs ├── Hyperledger.Aries.Payments.SovrinToken │ ├── AgentBuilderExtensions.cs │ ├── AnyAgentMessage.cs │ ├── GlobalSuppressions.cs │ ├── Hyperledger.Aries.Payments.SovrinToken.csproj │ ├── PaymentUtils.cs │ ├── PaymentsAgentMiddleware.cs │ ├── SovrinPaymentService.cs │ ├── SovrinTokenConfigurationService.cs │ └── TokenConfiguration.cs ├── Hyperledger.Aries.Routing.Edge │ ├── AriesFrameworkBuilderExtensions.cs │ ├── EdgeClientService.Backup.cs │ ├── EdgeClientService.cs │ ├── EdgeConnectionService.cs │ ├── EdgeProvisioningService.cs │ ├── Hyperledger.Aries.Routing.Edge.csproj │ ├── IEdgeClientService.cs │ └── IEdgeProvisioningService.cs ├── Hyperledger.Aries.Routing.Mediator │ ├── AriesFrameworkBuilderExtensions.cs │ ├── DefaultRoutingStore.cs │ ├── Handlers │ │ ├── MediatorForwardHandler.cs │ │ ├── RetrieveBackupHandler.cs │ │ ├── RoutingInboxHandler.cs │ │ └── StoreBackupHandler.cs │ ├── Hyperledger.Aries.Routing.Mediator.csproj │ ├── IRoutingStore.cs │ ├── MediatorAgent.cs │ ├── MediatorDiscoveryMiddleware.cs │ ├── MediatorProvisioningService.cs │ ├── Records │ │ ├── DeviceInfoRecord.cs │ │ ├── InboxItemRecord.cs │ │ ├── InboxRecord.cs │ │ └── RouteRecord.cs │ └── Storage │ │ ├── DefaultStorageService.cs │ │ └── IStorageService.cs ├── Hyperledger.Aries.Routing │ ├── AddDeviceInfoMessage.cs │ ├── AddRouteMessage.cs │ ├── AgentPublicConfiguration.cs │ ├── BackupTypeNames.cs │ ├── CreateInboxMessage.cs │ ├── CreateInboxResponseMessage.cs │ ├── DeleteInboxItemsMessage.cs │ ├── GetInboxItemsMessage.cs │ ├── GetInboxItemsResponseMessage.cs │ ├── Hyperledger.Aries.Routing.csproj │ ├── InboxItemEvent.cs │ ├── InboxItemMessage.cs │ ├── ListBackupsAgentMessage.cs │ ├── ListBackupsResponseAgentMessage.cs │ ├── RestoreInboxMessage.cs │ ├── RetrieveBackupAgentMessage.cs │ ├── RetrieveBackupResponseAgentMessage.cs │ ├── RoutingTypeNames.cs │ ├── StoreBackupAgentMessage.cs │ ├── StoreBackupResponseAgentMessage.cs │ ├── UpsertDeviceInfoMessage.cs │ └── Utils.cs ├── Hyperledger.Aries.TestHarness │ ├── AgentScenarios.cs │ ├── Hyperledger.Aries.TestHarness.csproj │ ├── Mock │ │ ├── InProcAgent.cs │ │ ├── InProcMessageHandler.cs │ │ ├── MockAgent.cs │ │ ├── MockAgentHttpHandler.cs │ │ ├── MockAgentMessageProcessor.cs │ │ ├── MockAgentRouter.cs │ │ └── MockUtils.cs │ ├── Scenarios.cs │ ├── TestConstants.cs │ ├── TestSingleWallet.cs │ └── Utils │ │ ├── AgentUtils.cs │ │ ├── PoolUtils.cs │ │ ├── ProofServiceUtils.cs │ │ └── ServiceUtils.cs ├── Hyperledger.Aries │ ├── Agents │ │ ├── Abstractions │ │ │ ├── IAgent.cs │ │ │ ├── IAgentContext.cs │ │ │ ├── IAgentMiddleware.cs │ │ │ ├── IAgentProvider.cs │ │ │ └── IMessageHandler.cs │ │ ├── AgentBase.cs │ │ ├── AgentContext.cs │ │ ├── Converters │ │ │ ├── AgentEndpointJsonConverter.cs │ │ │ ├── AgentMessageReader.cs │ │ │ └── AgentMessageWriter.cs │ │ ├── DefaultAgent.cs │ │ ├── DefaultAgentContext.cs │ │ ├── DefaultAgentProvider.cs │ │ ├── Extensions │ │ │ ├── AgentFrameworkBuilderExtensions.cs │ │ │ ├── AgentsExtensions.cs │ │ │ └── ServiceCollectionExtensions.cs │ │ ├── MessageHandlerBase.cs │ │ ├── MessageType.cs │ │ ├── MessageTypes.cs │ │ ├── MessageTypesHttps.cs │ │ ├── Models │ │ │ ├── AgentEndpoint.cs │ │ │ ├── AgentMessage.cs │ │ │ ├── AgentOwner.cs │ │ │ ├── MessageContext.cs │ │ │ ├── PackedMessageContext.cs │ │ │ └── UnpackedMessageContext.cs │ │ └── Transport │ │ │ ├── DefaultMessageService.cs │ │ │ ├── HttpMessageDispatcher.cs │ │ │ ├── IMessageDispatcher.cs │ │ │ ├── IMessageService.cs │ │ │ └── MessageServiceExtensions.cs │ ├── Common │ │ ├── AcknowledgeMessage.cs │ │ ├── AcknowledgementStatusConstants.cs │ │ ├── AgentFrameworkException.cs │ │ ├── ErrorCode.cs │ │ ├── EventAggregator.cs │ │ ├── FormattingExtensions.cs │ │ ├── IEventAggregator.cs │ │ ├── LoggingEvents.cs │ │ ├── MediaTypes.cs │ │ └── ServiceMessageProcessingEvent.cs │ ├── Configuration │ │ ├── AgentOptions.cs │ │ ├── AriesFrameworkBuilder.cs │ │ ├── DefaultProvisioningHostedService.cs │ │ ├── DefaultProvisioningService.cs │ │ ├── IProvisioningService.cs │ │ ├── PoolConfigurationService.cs │ │ ├── ProvisioningRecord.cs │ │ ├── ServiceCollectionExtensions.cs │ │ └── TxnAuthorAcceptanceService.cs │ ├── Decorators │ │ ├── Attachments │ │ │ ├── AttachDecorator.cs │ │ │ ├── AttachExtensions.cs │ │ │ ├── Attachment.cs │ │ │ ├── AttachmentContent.cs │ │ │ ├── AttachmentContentExtensions.cs │ │ │ └── JsonWebSignature.cs │ │ ├── DecoratorExtensions.cs │ │ ├── Decorators.cs │ │ ├── Payments │ │ │ ├── PaymentReceiptDecorator.cs │ │ │ └── PaymentRequestDecorator.cs │ │ ├── PleaseAck │ │ │ ├── OnValues.cs │ │ │ └── PleaseAckDecorator.cs │ │ ├── Service │ │ │ ├── ServiceDecorator.cs │ │ │ └── ServiceDecoratorExtensions.cs │ │ ├── Signature │ │ │ ├── SignatureDecorator.cs │ │ │ └── SignatureUtils.cs │ │ ├── Threading │ │ │ ├── ThreadDecorator.cs │ │ │ └── ThreadDecoratorExtensions.cs │ │ └── Transport │ │ │ ├── TransportDecorator.cs │ │ │ └── TransportDecoratorExtensions.cs │ ├── Features │ │ ├── BasicMessage │ │ │ ├── BasicMessage.cs │ │ │ ├── BasicMessageRecord.cs │ │ │ ├── DefaultBasicMessageHandler.cs │ │ │ ├── DefaultBasicMessageService.cs │ │ │ └── IBasicMessageService.cs │ │ ├── Discovery │ │ │ ├── DefaultDiscoveryHandler.cs │ │ │ ├── DefaultDiscoveryService.cs │ │ │ ├── DiscoveryDiscloseMessage.cs │ │ │ ├── DiscoveryQueryMessage.cs │ │ │ └── IDiscoveryService.cs │ │ ├── Handshakes │ │ │ ├── Common │ │ │ │ ├── Connection.cs │ │ │ │ ├── ConnectionAlias.cs │ │ │ │ ├── ConnectionRecord.cs │ │ │ │ └── Dids │ │ │ │ │ ├── DidCommServiceEndpoint.cs │ │ │ │ │ ├── DidDoc.cs │ │ │ │ │ ├── DidDocExtensions.cs │ │ │ │ │ ├── DidDocKey.cs │ │ │ │ │ ├── DidDocServiceEndpointTypes.cs │ │ │ │ │ ├── DidDocServiceEndpointsConverter.cs │ │ │ │ │ ├── IDidDocServiceEndpoint.cs │ │ │ │ │ └── IndyAgentDidDocService.cs │ │ │ ├── Connection │ │ │ │ ├── DefaultConnectionHandler.cs │ │ │ │ ├── DefaultConnectionService.cs │ │ │ │ ├── Extensions │ │ │ │ │ └── ConnectionServiceExtensions.cs │ │ │ │ ├── IConnectionService.cs │ │ │ │ └── Models │ │ │ │ │ ├── ConnectionAcknowledgeMessage.cs │ │ │ │ │ ├── ConnectionInvitationMessage.cs │ │ │ │ │ ├── ConnectionRequestMessage.cs │ │ │ │ │ ├── ConnectionResponseMessage.cs │ │ │ │ │ └── InviteConfiguration.cs │ │ │ ├── DidExchange │ │ │ │ ├── DefaultDidExchangeHandler.cs │ │ │ │ ├── DefaultDidExchangeService.cs │ │ │ │ ├── IDidExchangeService.cs │ │ │ │ └── Models │ │ │ │ │ ├── DidExchangeCompleteMessage.cs │ │ │ │ │ ├── DidExchangeProblemReportMessage.cs │ │ │ │ │ ├── DidExchangeRequestMessage.cs │ │ │ │ │ └── DidExchangeResponseMessage.cs │ │ │ ├── HandshakeConstants.cs │ │ │ └── HandshakeProtocol.cs │ │ ├── IssueCredential │ │ │ ├── Abstractions │ │ │ │ ├── ICredentialService.cs │ │ │ │ ├── ISchemaService.cs │ │ │ │ └── ITailsService.cs │ │ │ ├── CredentialServiceExtensions.cs │ │ │ ├── DefaultCredentialHandler.cs │ │ │ ├── DefaultCredentialService.cs │ │ │ ├── DefaultSchemaService.cs │ │ │ ├── DefaultTailsService.cs │ │ │ ├── Models │ │ │ │ ├── Credential.cs │ │ │ │ ├── CredentialDefinitionConfiguration.cs │ │ │ │ ├── CredentialInfo.cs │ │ │ │ ├── CredentialMimeTypes.cs │ │ │ │ ├── CredentialPreviewAttribute.cs │ │ │ │ ├── CredentialPreviewAttributeConverter.cs │ │ │ │ ├── Messages │ │ │ │ │ ├── CredentialAcknowledgeMessage.cs │ │ │ │ │ ├── CredentialIssueMessage.cs │ │ │ │ │ ├── CredentialOfferMessage.cs │ │ │ │ │ ├── CredentialPreviewMessage.cs │ │ │ │ │ ├── CredentialProposalMessage.cs │ │ │ │ │ └── CredentialRequestMessage.cs │ │ │ │ └── OfferConfiguration.cs │ │ │ └── Records │ │ │ │ ├── CredentialRecord.cs │ │ │ │ ├── CredentialState.cs │ │ │ │ ├── CredentialTrigger.cs │ │ │ │ ├── DefinitionRecord.cs │ │ │ │ ├── RevocationRegistryRecord.cs │ │ │ │ └── SchemaRecord.cs │ │ ├── OutOfBand │ │ │ ├── DefaultOutOfBandHandler.cs │ │ │ ├── DefaultOutOfBandService.cs │ │ │ ├── HandshakeReuseAcceptedMessage.cs │ │ │ ├── HandshakeReuseMessage.cs │ │ │ ├── IOutOfBandService.cs │ │ │ ├── InvitationMessage.cs │ │ │ └── InvitationMessageExtensions.cs │ │ ├── PresentProof │ │ │ ├── DefaultProofHandler.cs │ │ │ ├── DefaultProofService.cs │ │ │ ├── IProofService.cs │ │ │ ├── Messages │ │ │ │ ├── PresentationAcknowledgeMessage.cs │ │ │ │ ├── PresentationMessage.cs │ │ │ │ ├── PresentationPreviewMessage.cs │ │ │ │ ├── ProposePresentationMessage.cs │ │ │ │ └── RequestPresentationMessage.cs │ │ │ ├── Models │ │ │ │ ├── AttributeFilterConverter.cs │ │ │ │ ├── PartialProof.cs │ │ │ │ ├── ProofAttribute.cs │ │ │ │ ├── ProofAttributeInfo.cs │ │ │ │ ├── ProofIdentifier.cs │ │ │ │ ├── ProofPredicateInfo.cs │ │ │ │ ├── ProofProposal.cs │ │ │ │ ├── ProofRequest.cs │ │ │ │ ├── ProofRequestConfiguration.cs │ │ │ │ ├── ProofRequestParameters.cs │ │ │ │ ├── RequestedAttribute.cs │ │ │ │ ├── RequestedCredentials.cs │ │ │ │ ├── RequestedProof.cs │ │ │ │ └── RevocationInterval.cs │ │ │ ├── ProofRecord.cs │ │ │ └── ProofServiceExtensions.cs │ │ ├── ProblemReport │ │ │ ├── ProblemImpact.cs │ │ │ ├── ProblemReportMessage.cs │ │ │ └── RetryParty.cs │ │ ├── RevocationNotification │ │ │ ├── DefaultRevocationNotificationHandler.cs │ │ │ ├── DefaultRevocationNotificationService.cs │ │ │ ├── IRevocationNotificationService.cs │ │ │ ├── RevocationNotificationAcknowledgeMessage.cs │ │ │ └── RevocationNotificationMessage.cs │ │ ├── Routing │ │ │ ├── DefaultForwardHandler.cs │ │ │ └── ForwardMessage.cs │ │ └── TrustPing │ │ │ ├── DefaultTrustPingHandler.cs │ │ │ ├── TrustPingMessage.cs │ │ │ └── TrustPingResponseMessage.cs │ ├── Hyperledger.Aries.csproj │ ├── IsExternalInit.cs │ ├── Ledger │ │ ├── Abstractions │ │ │ ├── ILedgerService.cs │ │ │ ├── ILedgerSigningService.cs │ │ │ └── IPoolService.cs │ │ ├── DefaultLedgerService.cs │ │ ├── DefaultLedgerSigningService.cs │ │ ├── DefaultPoolService.cs │ │ ├── Models │ │ │ ├── AuthorizationConstraint.cs │ │ │ ├── AuthorizationRule.cs │ │ │ ├── ConstraintMetadata.cs │ │ │ ├── CredDefId.cs │ │ │ ├── IndyAml.cs │ │ │ ├── IndyTaa.cs │ │ │ ├── IndyTaaAcceptance.cs │ │ │ ├── ParseRegistryResponseResult.cs │ │ │ ├── ParseResponseResult.cs │ │ │ ├── PoolAwaitable.cs │ │ │ ├── SchemaId.cs │ │ │ ├── ServiceEndpointResult.cs │ │ │ ├── TransactionActions.cs │ │ │ └── TransactionTypes.cs │ │ └── V2 │ │ │ ├── DefaultLedgerServiceV2.cs │ │ │ ├── DefaultPoolServiceV2.cs │ │ │ └── ResponseParser.cs │ ├── Payments │ │ ├── DefaultPaymentService.cs │ │ ├── IPaymentService.cs │ │ ├── Models │ │ │ ├── AddressOptions.cs │ │ │ ├── IndyPaymentInputSource.cs │ │ │ ├── IndyPaymentOutputSource.cs │ │ │ ├── PaymentAmount.cs │ │ │ ├── PaymentDetails.cs │ │ │ ├── PaymentItem.cs │ │ │ ├── PaymentMethod.cs │ │ │ ├── PaymentMethodData.cs │ │ │ └── TransactionCost.cs │ │ ├── PaymentAddressRecord.cs │ │ └── PaymentRecord.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Signatures │ │ ├── DefaultSigningService.cs │ │ └── ISigningService.cs │ ├── Storage │ │ ├── DefaultWalletRecordService.cs │ │ ├── DefaultWalletService.cs │ │ ├── IWalletRecordService.cs │ │ ├── IWalletService.cs │ │ ├── Models │ │ │ ├── RecordTagAttribute.cs │ │ │ ├── WalletConfiguration.cs │ │ │ ├── WalletCredentials.cs │ │ │ └── WalletStorageConfiguration.cs │ │ └── Records │ │ │ ├── RecordBase.cs │ │ │ └── Search │ │ │ ├── SearchItem.cs │ │ │ ├── SearchOptions.cs │ │ │ ├── SearchQuery.cs │ │ │ └── SearchResult.cs │ └── Utils │ │ ├── Base64UrlEncoder.cs │ │ ├── CredentialUtils.cs │ │ ├── CryptoUtils.cs │ │ ├── DidUtils.cs │ │ ├── EnvironmentUtils.cs │ │ ├── MessageUtils.cs │ │ ├── ResilienceUtils.cs │ │ ├── TagConstants.cs │ │ └── UriUtils.cs ├── WalletFramework.Core │ ├── Base64Url │ │ ├── Base64UrlString.cs │ │ └── Errors │ │ │ └── Base64UrlStringDecodingError.cs │ ├── ClaimPaths │ │ ├── ClaimPath.cs │ │ ├── ClaimPathComponent.cs │ │ ├── ClaimPathJsonConverter.cs │ │ ├── ClaimPathSelection.cs │ │ ├── Errors │ │ │ ├── Abstractions │ │ │ │ └── ClaimPathError.cs │ │ │ ├── ClaimPathIsEmptyError.cs │ │ │ ├── ElementNotFoundError.cs │ │ │ ├── NamespaceNotFoundError.cs │ │ │ ├── SelectedElementDoesNotExistInArrayError.cs │ │ │ ├── SelectedElementIsNotAnArrayError.cs │ │ │ ├── SelectedElementIsNotAnObjectError.cs │ │ │ ├── SelectionIsEmptyError.cs │ │ │ └── UnknownComponentError.cs │ │ └── SelectAllElementsInArrayComponent.cs │ ├── Colors │ │ └── Color.cs │ ├── Credentials │ │ ├── Abstractions │ │ │ └── ICredential.cs │ │ ├── CredentialId.cs │ │ ├── CredentialSetId.cs │ │ ├── CredentialState.cs │ │ └── Errors │ │ │ ├── CredentialIdError.cs │ │ │ └── CredentialSetIdError.cs │ ├── Cryptography │ │ ├── Abstractions │ │ │ └── IKeyStore.cs │ │ ├── Errors │ │ │ └── InvalidSignatureError.cs │ │ └── Models │ │ │ ├── KeyId.cs │ │ │ ├── PublicKey.cs │ │ │ └── RawSignature.cs │ ├── Encoding │ │ ├── Errors │ │ │ └── CouldNotParseToUtf8StringError.cs │ │ └── Sha256Hash.cs │ ├── Functional │ │ ├── Enumerable │ │ │ └── EnumerableFun.cs │ │ ├── Error.cs │ │ ├── Errors │ │ │ ├── EnumCanNotBeParsedError.cs │ │ │ ├── EnumerableIsEmptyError.cs │ │ │ ├── NoItemsSucceededValidationError.cs │ │ │ ├── ObjectRequirementsAreNotMetError.cs │ │ │ ├── StringIsNullOrWhitespaceError.cs │ │ │ └── UriCanNotBeParsedError.cs │ │ ├── OptionFun.cs │ │ ├── TaskFun.cs │ │ └── Validation.cs │ ├── Integrity │ │ └── IntegrityUri.cs │ ├── IsExternalInit.cs │ ├── Json │ │ ├── Errors │ │ │ ├── InvalidJsonError.cs │ │ │ ├── JArrayIsNullOrEmptyError.cs │ │ │ ├── JTokenIsNotAJValueError.cs │ │ │ ├── JTokenIsNotAnJArrayError.cs │ │ │ ├── JTokenIsNotAnJObjectError.cs │ │ │ ├── JValueIsNotAnIntError.cs │ │ │ ├── JsonFieldNotFoundError.cs │ │ │ ├── JsonFieldValueIsNullOrWhitespaceError.cs │ │ │ └── JsonIsNotAMapError.cs │ │ ├── JsonFun.cs │ │ └── JsonSettings.cs │ ├── Localization │ │ ├── Constants.cs │ │ ├── Errors │ │ │ └── LocaleError.cs │ │ └── Locale.cs │ ├── Path │ │ └── JsonPath.cs │ ├── StatusList │ │ ├── IStatusListService.cs │ │ ├── StatusListEntry.cs │ │ └── StatusListService.cs │ ├── String │ │ └── StringFun.cs │ ├── Uri │ │ └── UriFun.cs │ ├── Versioning │ │ └── VersionFun.cs │ ├── WalletFramework.Core.csproj │ └── X509 │ │ └── X509CertificateExtensions.cs ├── WalletFramework.IsoProximity │ ├── CommunicationPhase │ │ ├── Abstractions │ │ │ └── IProximityCommunicationService.cs │ │ └── Implementations │ │ │ └── ProximityCommunicationService.cs │ ├── DependencyInjection │ │ └── ServiceCollectionExtensions.cs │ ├── EngagementPhase │ │ ├── Abstractions │ │ │ └── IEngagementService.cs │ │ ├── Implementations │ │ │ └── EngagementService.cs │ │ └── QrReaderHandover.cs │ ├── IsExternalInit.cs │ └── WalletFramework.IsoProximity.csproj ├── WalletFramework.MdocLib │ ├── Ble │ │ ├── Abstractions │ │ │ ├── IBleCentral.cs │ │ │ └── IBlePeripheral.cs │ │ ├── BleDeviceAddress.cs │ │ ├── BleFlags.cs │ │ ├── BleFun.cs │ │ ├── BleRetrievalOptions.cs │ │ ├── BleUuids │ │ │ ├── BleUuid.cs │ │ │ ├── MdocReaderUuids.cs │ │ │ └── MdocUuids.cs │ │ └── Errors │ │ │ ├── CouldNotParseProximityMessageError.cs │ │ │ └── NoServiceUuidFoundError.cs │ ├── Cbor │ │ ├── Abstractions │ │ │ └── ICborSerializable.cs │ │ ├── CborByteString.cs │ │ ├── CborFun.cs │ │ └── Errors │ │ │ └── CborDecodingError.cs │ ├── Constants.cs │ ├── Device │ │ ├── Abstractions │ │ │ ├── IAesGcmEncryption.cs │ │ │ └── IMdocAuthenticationService.cs │ │ ├── AuthenticatedMdoc.cs │ │ ├── DeviceAuth.cs │ │ ├── DeviceAuthentication.cs │ │ ├── DeviceEngagement.cs │ │ ├── DeviceKeyInfo.cs │ │ ├── DeviceNameSpaces.cs │ │ ├── DeviceRetrievalMethod.cs │ │ ├── DeviceSignature.cs │ │ ├── DeviceSigned.cs │ │ ├── DeviceSignedItem.cs │ │ ├── Errors │ │ │ ├── InvalidEngagementUriScheme.cs │ │ │ ├── InvalidTargetedConnectionError.cs │ │ │ ├── InvalidVersionError.cs │ │ │ ├── UnsupportedCurveError.cs │ │ │ └── UnsupportedKeyTypeError.cs │ │ ├── Implementations │ │ │ ├── AesGcmEncryption.cs │ │ │ └── MdocAuthenticationService.cs │ │ ├── Request │ │ │ ├── DataElement.cs │ │ │ ├── DataElementIdentifier.cs │ │ │ ├── DeviceRequest.cs │ │ │ ├── DocRequest.cs │ │ │ ├── EncryptedDeviceRequest.cs │ │ │ ├── Errors │ │ │ │ └── DecryptionError.cs │ │ │ └── ItemsRequest.cs │ │ └── Response │ │ │ ├── DeviceResponse.cs │ │ │ ├── DeviceResponseConst.cs │ │ │ ├── Document.cs │ │ │ ├── DocumentError.cs │ │ │ ├── EncryptedDeviceResponse.cs │ │ │ ├── ErrorCode.cs │ │ │ ├── Errors │ │ │ ├── InvalidIssuerSignatureError.cs │ │ │ └── TrustChainValidationFailedError.cs │ │ │ └── StatusCode.cs │ ├── Digests │ │ ├── Digest.cs │ │ ├── DigestAlgorithm.cs │ │ ├── DigestId.cs │ │ └── ValueDigests.cs │ ├── DocType.cs │ ├── Elements │ │ ├── Element.cs │ │ ├── ElementArray.cs │ │ ├── ElementIdentifier.cs │ │ ├── ElementMap.cs │ │ └── ElementValue.cs │ ├── Errors.cs │ ├── IsExternalInit.cs │ ├── Issuer │ │ ├── IssuerAuth.cs │ │ ├── IssuerNameSpaces.cs │ │ ├── IssuerSigned.cs │ │ └── IssuerSignedItem.cs │ ├── Mdoc.cs │ ├── NameSpace.cs │ ├── Reader │ │ ├── EngagementUri.cs │ │ └── ReaderEngagement.cs │ ├── Security │ │ ├── Abstractions │ │ │ └── IHandover.cs │ │ ├── Cose │ │ │ ├── Abstractions │ │ │ │ └── ICoseSign1Signer.cs │ │ │ ├── CoseEllipticCurves.cs │ │ │ ├── CoseKey.cs │ │ │ ├── CoseLabel.cs │ │ │ ├── CoseSignature.cs │ │ │ ├── Errors │ │ │ │ └── NotSupportedCurveError.cs │ │ │ ├── Implementations │ │ │ │ └── CoseSign1Signer.cs │ │ │ ├── ProtectedHeaders.cs │ │ │ └── UnprotectedHeaders.cs │ │ ├── ECKeyPairGenerator.cs │ │ ├── EngagementSecurity.cs │ │ ├── Errors │ │ │ ├── SessionDataError.cs │ │ │ └── SessionEstablishmentError.cs │ │ ├── KeyAuthorizations.cs │ │ ├── KeyInfo.cs │ │ ├── MobileSecurityObject.cs │ │ ├── Random.cs │ │ ├── SessionData.cs │ │ ├── SessionEstablishment.cs │ │ ├── SessionTranscript.cs │ │ ├── SigStructure.cs │ │ └── ValidityInfo.cs │ └── WalletFramework.MdocLib.csproj ├── WalletFramework.MdocVc │ ├── ClaimDisplay.cs │ ├── ClaimName.cs │ ├── Common │ │ └── Errors.cs │ ├── IsExternalInit.cs │ ├── MdocDisplay.cs │ ├── MdocLogo.cs │ ├── MdocName.cs │ ├── MdocRecord.cs │ └── WalletFramework.MdocVc.csproj ├── WalletFramework.Oid4Vc │ ├── ClientAttestation │ │ ├── ClientAttestationDetails.cs │ │ ├── ClientAttestationPopDetails.cs │ │ ├── ClientAttestationService.cs │ │ ├── CombinedWalletAttestation.cs │ │ ├── HttpClientExtensions.cs │ │ ├── IClientAttestationService.cs │ │ ├── WalletInstanceAttestationJwt.cs │ │ └── WalletInstanceAttestationPopJwt.cs │ ├── Constants.cs │ ├── Credential │ │ └── CredentialFun.cs │ ├── CredentialSet │ │ ├── CredentialSetService.cs │ │ ├── CredentialSetStorage.cs │ │ ├── ICredentialSetService.cs │ │ ├── ICredentialSetStorage.cs │ │ └── Models │ │ │ ├── CredentialSetRecord.cs │ │ │ └── OnDemandCredentialSet.cs │ ├── Database │ │ └── Migration │ │ │ ├── Abstraction │ │ │ ├── IMigrationStepsProvider.cs │ │ │ └── IRecordsMigrationService.cs │ │ │ ├── Implementations │ │ │ ├── MigrationStepsProvider.cs │ │ │ └── RecordsMigrationService.cs │ │ │ └── MigrationStep.cs │ ├── DependencyInjection │ │ └── ServiceCollectionExtensions.cs │ ├── Errors │ │ └── ErrorResponse.cs │ ├── FormattingExtensions.cs │ ├── IsExternalInit.cs │ ├── Oid4Vci │ │ ├── Abstractions │ │ │ ├── IMdocCandidateService.cs │ │ │ ├── IMdocStorage.cs │ │ │ └── IOid4VciClientService.cs │ │ ├── AuthFlow │ │ │ ├── Abstractions │ │ │ │ └── IAuthFlowSessionStorage.cs │ │ │ ├── Errors │ │ │ │ ├── AuthFlowSessionCodeError.cs │ │ │ │ └── AuthFlowSessionStateError.cs │ │ │ ├── Implementations │ │ │ │ └── AuthFlowSessionStorage.cs │ │ │ ├── Models │ │ │ │ ├── AuthFlowSessionCode.cs │ │ │ │ ├── AuthFlowSessionState.cs │ │ │ │ ├── AuthorizationCodeParameters.cs │ │ │ │ ├── AuthorizationData.cs │ │ │ │ ├── AuthorizationDetails.cs │ │ │ │ ├── ClientOptions.cs │ │ │ │ ├── CredentialIdentifier.cs │ │ │ │ ├── IssuanceSession.cs │ │ │ │ ├── PushedAuthorizationRequestResponse.cs │ │ │ │ └── VciAuthorizationRequest.cs │ │ │ └── Records │ │ │ │ └── AuthFlowSessionRecord.cs │ │ ├── Authorization │ │ │ ├── Abstractions │ │ │ │ └── ITokenService.cs │ │ │ ├── DPop │ │ │ │ ├── Abstractions │ │ │ │ │ └── IDPopHttpClient.cs │ │ │ │ ├── Implementations │ │ │ │ │ └── DPopHttpClient.cs │ │ │ │ └── Models │ │ │ │ │ ├── DPop.cs │ │ │ │ │ ├── DPopConfig.cs │ │ │ │ │ ├── DPopHttpResponse.cs │ │ │ │ │ ├── DPopNonce.cs │ │ │ │ │ └── DPopToken.cs │ │ │ ├── Errors │ │ │ │ └── AuthorizationServerIdError.cs │ │ │ ├── Implementations │ │ │ │ └── TokenService.cs │ │ │ └── Models │ │ │ │ ├── AuthorizationServerId.cs │ │ │ │ ├── AuthorizationServerMetadata.cs │ │ │ │ ├── Mdoc │ │ │ │ └── MdocTokenRequest.cs │ │ │ │ ├── OAuthToken.cs │ │ │ │ └── TokenRequest.cs │ │ ├── CredConfiguration │ │ │ ├── Errors │ │ │ │ ├── BatchSizeIsNotAPositiveNumberError.cs │ │ │ │ ├── CryptographicBindingMethodNotSupportedError.cs │ │ │ │ ├── FormatNotSupportedError.cs │ │ │ │ └── ProofTypeIdNotSupportedError.cs │ │ │ └── Models │ │ │ │ ├── CredentialBackgroundImage.cs │ │ │ │ ├── CredentialConfiguration.cs │ │ │ │ ├── CredentialDisplay.cs │ │ │ │ ├── CredentialLogo.cs │ │ │ │ ├── CredentialName.cs │ │ │ │ ├── CryptograhicSigningAlgValue.cs │ │ │ │ ├── CryptographicBindingMethod.cs │ │ │ │ ├── Format.cs │ │ │ │ ├── Mdoc │ │ │ │ ├── ClaimsMetadata.cs │ │ │ │ ├── CryptoGraphicCurve.cs │ │ │ │ ├── CryptographicSuite.cs │ │ │ │ ├── ElementDisplay.cs │ │ │ │ ├── ElementMetadata.cs │ │ │ │ ├── ElementName.cs │ │ │ │ ├── MdocConfiguration.cs │ │ │ │ └── Policy.cs │ │ │ │ ├── ProofTypeId.cs │ │ │ │ ├── ProofTypeMetadata.cs │ │ │ │ ├── Scope.cs │ │ │ │ ├── SdJwt │ │ │ │ └── SdJwtConfiguration.cs │ │ │ │ └── SupportedCredentialConfiguration.cs │ │ ├── CredOffer │ │ │ ├── Abstractions │ │ │ │ └── ICredentialOfferService.cs │ │ │ ├── Errors │ │ │ │ ├── CouldNotFetchCredentialOfferError.cs │ │ │ │ ├── CredentialConfigurationIdError.cs │ │ │ │ ├── CredentialConfigurationIdIsNullOrWhitespaceError.cs │ │ │ │ ├── CredentialIssuerError.cs │ │ │ │ ├── CredentialOfferHasNoQueryParameterError.cs │ │ │ │ ├── CredentialOfferNotFoundError.cs │ │ │ │ └── ScopeIsNullOrWhitespaceError.cs │ │ │ ├── GrantTypes │ │ │ │ ├── AuthorizationCode.cs │ │ │ │ └── PreAuthorizedCode.cs │ │ │ ├── Implementations │ │ │ │ └── CredentialOfferService.cs │ │ │ └── Models │ │ │ │ ├── CredentialConfigurationId.cs │ │ │ │ ├── CredentialOffer.cs │ │ │ │ ├── CredentialOfferMetadata.cs │ │ │ │ ├── Grants.cs │ │ │ │ └── ScopedCredentialConfiguration.cs │ │ ├── CredRequest │ │ │ ├── Abstractions │ │ │ │ └── ICredentialRequestService.cs │ │ │ ├── Implementations │ │ │ │ └── CredentialRequestService.cs │ │ │ └── Models │ │ │ │ ├── CredentialRequest.cs │ │ │ │ ├── Mdoc │ │ │ │ └── MdocCredentialRequest.cs │ │ │ │ ├── ProofOfPossession.cs │ │ │ │ ├── ProofsOfPossession.cs │ │ │ │ └── SdJwt │ │ │ │ └── SdJwtCredentialRequest.cs │ │ ├── CredResponse │ │ │ ├── CredentialResponse.cs │ │ │ ├── Mdoc │ │ │ │ └── EncodedMdoc.cs │ │ │ ├── SdJwt │ │ │ │ ├── EncodedSdJwt.cs │ │ │ │ └── Errors │ │ │ │ │ └── SdJwtError.cs │ │ │ └── TransactionId.cs │ │ ├── CredentialNonce │ │ │ ├── Abstractions │ │ │ │ └── ICredentialNonceService.cs │ │ │ ├── Implementations │ │ │ │ └── CredentialNonceService.cs │ │ │ └── Models │ │ │ │ ├── CredentialNonce.cs │ │ │ │ └── CredentialNonceEndpoint.cs │ │ ├── Exceptions │ │ │ └── Oid4VciInvalidGrantException.cs │ │ ├── Extensions │ │ │ └── Oid4VciHttpClientExtensions.cs │ │ ├── Implementations │ │ │ ├── MdocCandidateService.cs │ │ │ ├── MdocFun.cs │ │ │ ├── MdocStorage.cs │ │ │ ├── Oid4VciClientService.cs │ │ │ └── SdJwtRecordExtensions.cs │ │ ├── Issuer │ │ │ ├── Abstractions │ │ │ │ └── IIssuerMetadataService.cs │ │ │ ├── Errors │ │ │ │ ├── CredentialEndpointError.cs │ │ │ │ └── CredentialIssuerIdError.cs │ │ │ ├── Implementations │ │ │ │ └── IssuerMetadataService.cs │ │ │ └── Models │ │ │ │ ├── CredentialIssuerId.cs │ │ │ │ ├── IssuerMetadata.cs │ │ │ │ └── IssuerName.cs │ │ └── Models │ │ │ └── Metadata │ │ │ ├── Credential │ │ │ ├── Attributes │ │ │ │ ├── OidClaim.cs │ │ │ │ └── OidCredentialAttributeDisplay.cs │ │ │ └── OidCredentialDefinition.cs │ │ │ ├── Issuer │ │ │ ├── BatchCredentialIssuance.cs │ │ │ ├── IssuerDisplay.cs │ │ │ ├── IssuerLogo.cs │ │ │ └── IssuerName.cs │ │ │ └── IssuerMetadataSet.cs │ ├── Oid4Vp │ │ ├── AuthRequest │ │ │ └── AuthRequestFun.cs │ │ ├── AuthResponse │ │ │ ├── Encryption │ │ │ │ ├── Abstractions │ │ │ │ │ ├── IAuthorizationResponseEncryptionService.cs │ │ │ │ │ └── IVerifierKeyService.cs │ │ │ │ ├── EncryptedAuthorizationResponse.cs │ │ │ │ └── Implementations │ │ │ │ │ ├── AuthorizationResponseEncryptionService.cs │ │ │ │ │ └── VerifierKeyService.cs │ │ │ └── VpToken.cs │ │ ├── ClaimPaths │ │ │ └── ClaimPathFun.cs │ │ ├── DcApi │ │ │ ├── DcApiConstants.cs │ │ │ └── Models │ │ │ │ ├── DcApiRequestBatch.cs │ │ │ │ ├── DcApiRequestBatchFun.cs │ │ │ │ ├── DcApiRequestItem.cs │ │ │ │ ├── OpenId4VpDcApiHandover.cs │ │ │ │ ├── OpenId4VpDcApiHandoverInfo.cs │ │ │ │ └── Origin.cs │ │ ├── Dcql │ │ │ ├── CredentialQueries │ │ │ │ ├── CredentialQuery.cs │ │ │ │ ├── CredentialQueryId.cs │ │ │ │ ├── CredentialQueryIdJsonConverter.cs │ │ │ │ └── CredentialQueryIdListJsonConverter.cs │ │ │ ├── CredentialSets │ │ │ │ ├── CredentialSetJsonConverter.cs │ │ │ │ ├── CredentialSetOption.cs │ │ │ │ └── CredentialSetQuery.cs │ │ │ ├── DcqlFun.cs │ │ │ ├── Models │ │ │ │ ├── ClaimIdentifier.cs │ │ │ │ ├── ClaimQuery.cs │ │ │ │ ├── ClaimSet.cs │ │ │ │ ├── ClaimSetJsonConverter.cs │ │ │ │ ├── CredentialMetaQuery.cs │ │ │ │ ├── CredentialMetaQueryJsonConverter.cs │ │ │ │ └── DcqlQuery.cs │ │ │ └── Services │ │ │ │ ├── DcqlService.cs │ │ │ │ └── IDcqlService.cs │ │ ├── Errors │ │ │ ├── AccessDeniedError.cs │ │ │ ├── InvalidRequestError.cs │ │ │ ├── InvalidRequestUriMethodError.cs │ │ │ ├── VpError.cs │ │ │ └── VpFormatsNotSupportedError.cs │ │ ├── Exceptions │ │ │ └── Oid4VpNoCredentialCandidateException.cs │ │ ├── Extensions │ │ │ └── JwtSecurityTokenExtensions.cs │ │ ├── HandoverConstants.cs │ │ ├── Jwk │ │ │ ├── JwkFun.cs │ │ │ └── JwkSet.cs │ │ ├── Models │ │ │ ├── AuthorizationRequest.cs │ │ │ ├── AuthorizationRequestByReference.cs │ │ │ ├── AuthorizationRequestByValue.cs │ │ │ ├── AuthorizationRequestCancellation.cs │ │ │ ├── AuthorizationRequestUri.cs │ │ │ ├── AuthorizationResponse.cs │ │ │ ├── AuthorizationResponseCallback.cs │ │ │ ├── CandidateQueryResult.cs │ │ │ ├── ClientIdScheme.cs │ │ │ ├── ClientJwksConverter.cs │ │ │ ├── ClientMetadata.cs │ │ │ ├── CredentialSetCandidate.cs │ │ │ ├── Formats.cs │ │ │ ├── MDocFormat.cs │ │ │ ├── Nonce.cs │ │ │ ├── OidPresentationRecord.cs │ │ │ ├── OpenId4VpHandover.cs │ │ │ ├── OpenId4VpHandoverInfo.cs │ │ │ ├── PresentationCandidate.cs │ │ │ ├── PresentationCandidateSet.cs │ │ │ ├── PresentationMap.cs │ │ │ ├── PresentationRequest.cs │ │ │ ├── PresentedClaim.cs │ │ │ ├── PresentedCredential.cs │ │ │ ├── PresentedCredentialSet.cs │ │ │ ├── RequestObject.cs │ │ │ ├── SdJwtFormat.cs │ │ │ ├── SelectedCredential.cs │ │ │ ├── VerifierAttestation.cs │ │ │ ├── WalletMetadata.cs │ │ │ └── v1 │ │ │ │ └── OidPresentationRecord.cs │ │ ├── PresentationExchange │ │ │ ├── Models │ │ │ │ ├── Descriptor.cs │ │ │ │ ├── DescriptorMap.cs │ │ │ │ ├── InputDescriptor.cs │ │ │ │ ├── PresentationDefinition.cs │ │ │ │ ├── PresentationSubmission.cs │ │ │ │ └── SubmissionRequirement.cs │ │ │ └── Services │ │ │ │ ├── IPexService.cs │ │ │ │ └── PexService.cs │ │ ├── Query │ │ │ └── CredentialRequirement.cs │ │ ├── Services │ │ │ ├── AuthorizationRequestService.cs │ │ │ ├── CandidateQueryService.cs │ │ │ ├── DcApiService.cs │ │ │ ├── IAuthorizationRequestService.cs │ │ │ ├── ICandidateQueryService.cs │ │ │ ├── IDcApiService.cs │ │ │ ├── IOid4VpClientService.cs │ │ │ ├── IOid4VpHaipClient.cs │ │ │ ├── IOid4VpRecordService.cs │ │ │ ├── IPresentationService.cs │ │ │ ├── Oid4VpClientService.cs │ │ │ ├── Oid4VpHaipClient.cs │ │ │ ├── Oid4VpRecordService.cs │ │ │ └── PresentationService.cs │ │ └── TransactionDatas │ │ │ ├── CandidateTxDataMatch.cs │ │ │ ├── Errors │ │ │ └── InvalidTransactionDataError.cs │ │ │ ├── TransactionData.cs │ │ │ ├── TransactionDataArray.cs │ │ │ ├── TransactionDataCredentialId.cs │ │ │ ├── TransactionDataFun.cs │ │ │ ├── TransactionDataHash.cs │ │ │ ├── TransactionDataHashesAlg.cs │ │ │ ├── TransactionDataProperties.cs │ │ │ └── TransactionDataType.cs │ ├── Payment │ │ ├── Currency.cs │ │ ├── CurrencyAmount.cs │ │ ├── Payee.cs │ │ ├── PaymentData.cs │ │ ├── PaymentSchedule.cs │ │ └── PaymentTransactionData.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Qes │ │ ├── Authorization │ │ │ ├── DocumentDigest.cs │ │ │ ├── DocumentDigestLabel.cs │ │ │ ├── InputDescriptorTransactionData.cs │ │ │ ├── QesAuthorizationTransactionData.cs │ │ │ └── UC5QesTransactionData.cs │ │ └── CertCreation │ │ │ ├── QCertCreationTransactionData.cs │ │ │ └── TermsConditionsUri.cs │ ├── RelyingPartyAuthentication │ │ ├── Abstractions │ │ │ ├── IRpAuthService.cs │ │ │ └── IRpRegistrarService.cs │ │ ├── AccessCertificates │ │ │ ├── AccessCertificate.cs │ │ │ ├── AccessCertificateValidationResult.cs │ │ │ └── Errors │ │ │ │ └── AccessCertificateError.cs │ │ ├── Implementations │ │ │ ├── RpAuthService.cs │ │ │ └── RpRegistrarService.cs │ │ ├── RegistrationCertificate │ │ │ ├── Contact.cs │ │ │ ├── ContactAddress.cs │ │ │ ├── ContactEmail.cs │ │ │ ├── ContactPhone.cs │ │ │ ├── Iat.cs │ │ │ ├── OverAskingValidationResult.cs │ │ │ ├── PrivacyPolicyUri.cs │ │ │ ├── Purpose.cs │ │ │ ├── RegistrationCertificate.cs │ │ │ └── Sub.cs │ │ ├── RpAuthResult.cs │ │ ├── RpRegistrarCertificate.cs │ │ └── RpTrustLevel.cs │ └── WalletFramework.Oid4Vc.csproj ├── WalletFramework.SdJwtLib │ ├── Models │ │ ├── Claim.cs │ │ ├── Disclosure.cs │ │ ├── PresentationFormat.cs │ │ └── SdJwtDoc.cs │ ├── Roles │ │ ├── IHolder.cs │ │ ├── IIssuer.cs │ │ ├── IVerifier.cs │ │ ├── Implementation │ │ │ ├── Holder.cs │ │ │ ├── Issuer.cs │ │ │ └── Verifier.cs │ │ └── Issuer │ │ │ └── SdToken.cs │ └── WalletFramework.SdJwtLib.csproj ├── WalletFramework.SdJwtVc │ ├── IsExternalInit.cs │ ├── Models │ │ ├── Credential │ │ │ ├── Attributes │ │ │ │ ├── ClaimDisplay.cs │ │ │ │ └── ClaimMetadata.cs │ │ │ ├── CredentialDefinition.cs │ │ │ ├── SdJwtDisplay.cs │ │ │ └── SdJwtMetadata.cs │ │ ├── Records │ │ │ └── SdJwtRecord.cs │ │ ├── Vct.cs │ │ └── VctMetadata │ │ │ ├── Claims │ │ │ ├── ClaimDisplay.cs │ │ │ ├── ClaimSelectiveDisclosure.cs │ │ │ └── ClaimVerification.cs │ │ │ ├── Rendering │ │ │ ├── Logo.cs │ │ │ ├── RenderingMetadata.cs │ │ │ ├── SimpleRenderingMethod.cs │ │ │ ├── SvgTemplateColorScheme.cs │ │ │ ├── SvgTemplateContrast.cs │ │ │ ├── SvgTemplateOrientation.cs │ │ │ ├── SvgTemplateProperties.cs │ │ │ └── SvgTemplatesRenderingMethod.cs │ │ │ ├── VctMetadata.cs │ │ │ ├── VctMetadataClaim.cs │ │ │ └── VctMetadataDisplay.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServiceCollectionExtensions.cs │ ├── Services │ │ ├── IVctMetadataService.cs │ │ ├── SdJwtVcHolderService │ │ │ ├── ISdJwtSigner.cs │ │ │ ├── ISdJwtVcHolderService.cs │ │ │ ├── SdJwtSigner.cs │ │ │ └── SdJwtVcHolderService.cs │ │ └── VctMetadataService.cs │ └── WalletFramework.SdJwtVc.csproj └── WalletFramework.sln └── test ├── .editorconfig ├── Hyperledger.Aries.Tests ├── ConfigurationTests.cs ├── ConnectionRecordVersioningTests.cs ├── ConverterTests.cs ├── Decorators │ ├── AttachmentContentTests.cs │ ├── AttachmentDecoratorTests.cs │ ├── SignatorDecoratorTests.cs │ ├── ThreadingDecoratorTests.cs │ └── TransportDecoratorTests.cs ├── DidCommServiceTests.cs ├── DidDocTests.cs ├── DidUtilsTests.cs ├── EventAggregatorTests.cs ├── Extensions │ └── ObjectExtensions.cs ├── GlobalSuppressions.cs ├── Hyperledger.Aries.Tests.csproj ├── InProcAgentTests.cs ├── Integration │ ├── ConnectionTests.cs │ ├── CredentialTests.cs │ ├── DidExchangeTests.cs │ ├── DiscoveryTests.cs │ ├── MessageTypesTests.cs │ ├── OutOfBandTests.cs │ └── ProofTests.cs ├── LedgerServiceTests.cs ├── MessageServiceTests.cs ├── MessageUtilsTests.cs ├── MockExtendedConnectionService.cs ├── MockMessageHandler.cs ├── Payments │ ├── PaymentTests.cs │ ├── ProtocolTests.cs │ └── TransferTests.cs ├── PoolServiceTests.cs ├── Protocols │ ├── ConnectionTests.cs │ ├── CredentialTests.cs │ ├── CredentialTransientTests.cs │ ├── CredentialUtilsTests.cs │ ├── CredentialV1Tests.cs │ ├── DidExchangeTests.cs │ ├── DiscoveryTests.cs │ ├── OutOfBandTests.cs │ ├── ProofTests.cs │ └── RevocationTests.cs ├── ProvisioningServiceTests.cs ├── RecordTests.cs ├── Routing │ ├── BackupTests.cs │ ├── RoutingInboxHandlerTests.cs │ ├── RoutingTests.cs │ └── WalletBackupTests.cs ├── RuntimeTests.cs ├── SchemaServiceTests.cs ├── SearchTests.cs ├── StateMachineTests.cs ├── Storage │ └── Models │ │ └── WalletStorageConfigurationTest.cs ├── WalletTests.cs └── pool_genesis.txn ├── WalletFramework.Core.Tests ├── Path │ └── ClaimPathTests.cs ├── StatusList │ └── StatusListTests.cs ├── Validation │ ├── ApplyTests.cs │ └── ValidationTests.cs └── WalletFramework.Core.Tests.csproj ├── WalletFramework.Integration.Tests └── WalletFramework.Integration.Tests │ ├── Oid4Vp │ ├── Dcql │ │ └── DcqlServiceTests.cs │ └── PresentationExchange │ │ ├── Models │ │ ├── Can_Create_Authorization_Response.json │ │ ├── Can_Parse_Presentation_Definition.json │ │ ├── PexTestsDataProvider.cs │ │ └── Throws_Exception_When_Descriptors_Are_Missing.json │ │ └── Services │ │ └── PexServiceTests.cs │ ├── Usings.cs │ └── WalletFramework.Integration.Tests.csproj ├── WalletFramework.MdocLib.Tests ├── Helpers.cs ├── MdocSamples.cs ├── MdocTests.cs └── WalletFramework.MdocLib.Tests.csproj ├── WalletFramework.MdocVc.Tests ├── MdocRecordTests.cs ├── MdocVcSamples.cs └── WalletFramework.MdocVc.Tests.csproj ├── WalletFramework.Oid4Vc.Tests ├── Extensions │ └── ObjectExtensions.cs ├── Oid4Vci │ ├── AuthFlow │ │ ├── AuthFlowSessionRecordTests.cs │ │ └── Samples │ │ │ └── AuthFlowSamples.cs │ ├── CredConfiguration │ │ ├── Mdoc │ │ │ ├── MdocConfigurationTests.cs │ │ │ └── Samples │ │ │ │ └── MdocConfigurationSample.cs │ │ └── SdJwt │ │ │ ├── Samples │ │ │ └── SdJwtConfigurationSample.cs │ │ │ └── SdJwtConfigurationTests.cs │ ├── CredOffer │ │ ├── CredentialOfferTests.cs │ │ └── Samples │ │ │ └── CredentialOfferSample.cs │ ├── CredRequest │ │ └── CredentialRequestTests.cs │ ├── CredResponse │ │ └── CredentialResponseTests.cs │ ├── Issuer │ │ ├── IssuerMetadataTests.cs │ │ └── Samples │ │ │ └── IssuerMetadataSample.cs │ └── Localization │ │ ├── LocaleTests.cs │ │ └── Samples │ │ └── LocaleSample.cs ├── Oid4Vp │ ├── AuthRequest │ │ ├── AuthorizationRequestTests.cs │ │ ├── ClientMetadataTests.cs │ │ ├── Models │ │ │ ├── AuthorizationRequestServiceTestsDataProvider.cs │ │ │ ├── AuthorizationRequest_WithOverasking_HasInvalidRegistrationCertificateValidationResult.json │ │ │ ├── AuthorizationRequest_WithoutOverasking_HasValidRegistrationCertificateValidationResult.json │ │ │ ├── Can_Parse_Authorization_Request_With_Attachments.json │ │ │ └── Can_Parse_Authorization_Request_Without_Attachments.json │ │ ├── Samples │ │ │ └── AuthRequestSamples.cs │ │ └── X509SanDnsTests.cs │ ├── AuthResponse │ │ └── Encryption │ │ │ ├── EncryptedAuthorizationResponseTests.cs │ │ │ └── Samples │ │ │ └── AuthResponseEncryptionSamples.cs │ ├── ClaimPaths │ │ ├── ClaimPathJsonCredentialTests.cs │ │ └── Samples │ │ │ └── ClaimPathSamples.cs │ ├── DcApi │ │ ├── DcApiRequestBatchTests.cs │ │ └── DcApiSamples.cs │ ├── Dcql │ │ ├── ClaimIdentifierTests.cs │ │ ├── ClaimSetJsonConverterTests.cs │ │ ├── ClaimSetTests.cs │ │ ├── CredentialMetaQueryJsonConverterTests.cs │ │ ├── CredentialSets │ │ │ ├── CredentialQueryIdJsonConverterTests.cs │ │ │ ├── CredentialSetJsonConverterTests.cs │ │ │ ├── CredentialSetOptionTests.cs │ │ │ └── CredentialSetTests.cs │ │ ├── DcqlClaimSetsTests.cs │ │ ├── DcqlFindingCandidatesTests.cs │ │ ├── DcqlParsingTests.cs │ │ ├── DcqlResultTests.cs │ │ └── Samples │ │ │ ├── DcqlQuerySample.json │ │ │ ├── DcqlSamples.cs │ │ │ └── TransactionDataSamples.cs │ ├── Jwk │ │ ├── JwkTests.cs │ │ └── Samples │ │ │ └── JwkSamples.cs │ ├── TransactionDatas │ │ └── TransactionDataTests.cs │ └── WalletMetadata │ │ └── WalletMetadataTests.cs ├── Payment │ ├── PaymentTests.cs │ └── Samples │ │ └── PaymentTransactionDataSamples.cs ├── QCertCreation │ ├── QCertCreationTests.cs │ └── Samples │ │ └── QCertTransactionDataSamples.cs ├── RelyingPartyAuthentication │ ├── RPAuthenticationTests.cs │ ├── RegistrationCertificateTests.cs │ └── Samples │ │ ├── RegistrationCertificateSamples.cs │ │ └── RpAuthSamples.cs ├── Samples │ ├── JsonBasedCredentialSamples.cs │ ├── MdocSamples.cs │ └── SdJwtSamples.cs ├── Signatures │ ├── Samples │ │ └── SignatureTransactionDataSamples.cs │ └── SignatureTests.cs ├── Usings.cs └── WalletFramework.Oid4Vc.Tests.csproj ├── WalletFramework.SdJwtLib.Tests ├── DisclosureTests.cs ├── Examples │ ├── BaseExample.cs │ ├── Example1.cs │ ├── Example2.cs │ ├── Example3.cs │ ├── Example4a.cs │ └── Example5.cs ├── HolderTests.cs ├── Issuer │ └── IssuerTests.cs ├── SdJwtDocTests.cs ├── Usings.cs └── WalletFramework.SdJwtLib.Tests.csproj └── WalletFramework.SdJwtVc.Tests ├── Samples.cs ├── SdJwtRecordTests.cs ├── SdJwtVcHolderServiceTests.cs ├── Usings.cs ├── VctMetadataTests.cs └── WalletFramework.SdJwtVc.Tests.csproj /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/publish-nuget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/.github/workflows/publish-nuget.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /CodeMaid.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/CodeMaid.config -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docker-compose.test.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docker/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docker/commands.txt -------------------------------------------------------------------------------- /docker/docker_pool_genesis.txn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docker/docker_pool_genesis.txn -------------------------------------------------------------------------------- /docker/indy-pool.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docker/indy-pool.dockerfile -------------------------------------------------------------------------------- /docker/test-agent.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docker/test-agent.dockerfile -------------------------------------------------------------------------------- /docker/web-agent.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docker/web-agent.dockerfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_static/images/choose_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/_static/images/choose_template.png -------------------------------------------------------------------------------- /docs/_static/images/configure_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/_static/images/configure_agent.png -------------------------------------------------------------------------------- /docs/_static/images/target_framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/_static/images/target_framework.png -------------------------------------------------------------------------------- /docs/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/_templates/page.html -------------------------------------------------------------------------------- /docs/aspnetcore.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/aspnetcore.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/docker.rst -------------------------------------------------------------------------------- /docs/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/errors.rst -------------------------------------------------------------------------------- /docs/gettingstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/gettingstarted.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/payments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/payments.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/samples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/samples.rst -------------------------------------------------------------------------------- /docs/xamarin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/docs/xamarin.rst -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/nuget.config -------------------------------------------------------------------------------- /scripts/start-node-pool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/scripts/start-node-pool.sh -------------------------------------------------------------------------------- /scripts/start-web-agents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/scripts/start-web-agents.sh -------------------------------------------------------------------------------- /scripts/stop-node-pool.sh: -------------------------------------------------------------------------------- 1 | docker stop indy_pool -------------------------------------------------------------------------------- /scripts/tester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/scripts/tester.sh -------------------------------------------------------------------------------- /scripts/web-agents-ngrok-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/scripts/web-agents-ngrok-config.yaml -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore.Contracts/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.AspNetCore.Contracts/.editorconfig -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore.Contracts/AssemblyAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.AspNetCore.Contracts/AssemblyAnnotations.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore.Contracts/Features/Base/BaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.AspNetCore.Contracts/Features/Base/BaseRequest.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore.Contracts/Features/Connection/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore.Contracts/Features/Introduction/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore.Contracts/Features/Ledger/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore.Contracts/Features/Revocation/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore.Contracts/Features/TrustPing/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.AspNetCore/.editorconfig -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore/AgentMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.AspNetCore/AgentMiddleware.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore/Extensions/AriesOpenApiOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.AspNetCore/Extensions/AriesOpenApiOptions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore/Extensions/MvcBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.AspNetCore/Extensions/MvcBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore/Features/Base/BaseEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.AspNetCore/Features/Base/BaseEndpoint.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore/Features/Base/BaseError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.AspNetCore/Features/Base/BaseError.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore/Features/Base/BaseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.AspNetCore/Features/Base/BaseException.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore/Features/Introduction/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore/Features/Ledger/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore/Features/Revocation/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore/Features/TrustPing/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore/Hyperledger.Aries.AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.AspNetCore/Hyperledger.Aries.AspNetCore.csproj -------------------------------------------------------------------------------- /src/Hyperledger.Aries.AspNetCore/TailsMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.AspNetCore/TailsMiddleware.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Payments.SovrinToken/AgentBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Payments.SovrinToken/AgentBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Payments.SovrinToken/AnyAgentMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Payments.SovrinToken/AnyAgentMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Payments.SovrinToken/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Payments.SovrinToken/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Payments.SovrinToken/PaymentUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Payments.SovrinToken/PaymentUtils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Payments.SovrinToken/PaymentsAgentMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Payments.SovrinToken/PaymentsAgentMiddleware.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Payments.SovrinToken/SovrinPaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Payments.SovrinToken/SovrinPaymentService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Payments.SovrinToken/TokenConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Payments.SovrinToken/TokenConfiguration.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Edge/AriesFrameworkBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Edge/AriesFrameworkBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Edge/EdgeClientService.Backup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Edge/EdgeClientService.Backup.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Edge/EdgeClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Edge/EdgeClientService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Edge/EdgeConnectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Edge/EdgeConnectionService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Edge/EdgeProvisioningService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Edge/EdgeProvisioningService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Edge/IEdgeClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Edge/IEdgeClientService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Edge/IEdgeProvisioningService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Edge/IEdgeProvisioningService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Mediator/DefaultRoutingStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Mediator/DefaultRoutingStore.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Mediator/Handlers/RoutingInboxHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Mediator/Handlers/RoutingInboxHandler.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Mediator/Handlers/StoreBackupHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Mediator/Handlers/StoreBackupHandler.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Mediator/IRoutingStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Mediator/IRoutingStore.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Mediator/MediatorAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Mediator/MediatorAgent.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Mediator/MediatorDiscoveryMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Mediator/MediatorDiscoveryMiddleware.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Mediator/MediatorProvisioningService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Mediator/MediatorProvisioningService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Mediator/Records/DeviceInfoRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Mediator/Records/DeviceInfoRecord.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Mediator/Records/InboxItemRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Mediator/Records/InboxItemRecord.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Mediator/Records/InboxRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Mediator/Records/InboxRecord.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Mediator/Records/RouteRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Mediator/Records/RouteRecord.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Mediator/Storage/DefaultStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Mediator/Storage/DefaultStorageService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing.Mediator/Storage/IStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing.Mediator/Storage/IStorageService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/AddDeviceInfoMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/AddDeviceInfoMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/AddRouteMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/AddRouteMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/AgentPublicConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/AgentPublicConfiguration.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/BackupTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/BackupTypeNames.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/CreateInboxMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/CreateInboxMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/CreateInboxResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/CreateInboxResponseMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/DeleteInboxItemsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/DeleteInboxItemsMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/GetInboxItemsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/GetInboxItemsMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/GetInboxItemsResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/GetInboxItemsResponseMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/Hyperledger.Aries.Routing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/Hyperledger.Aries.Routing.csproj -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/InboxItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/InboxItemEvent.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/InboxItemMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/InboxItemMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/ListBackupsAgentMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/ListBackupsAgentMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/ListBackupsResponseAgentMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/ListBackupsResponseAgentMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/RestoreInboxMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/RestoreInboxMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/RetrieveBackupAgentMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/RetrieveBackupAgentMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/RetrieveBackupResponseAgentMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/RetrieveBackupResponseAgentMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/RoutingTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/RoutingTypeNames.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/StoreBackupAgentMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/StoreBackupAgentMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/StoreBackupResponseAgentMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/StoreBackupResponseAgentMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/UpsertDeviceInfoMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/UpsertDeviceInfoMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.Routing/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.Routing/Utils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/AgentScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/AgentScenarios.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/Hyperledger.Aries.TestHarness.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/Hyperledger.Aries.TestHarness.csproj -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/Mock/InProcAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/Mock/InProcAgent.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/Mock/InProcMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/Mock/InProcMessageHandler.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/Mock/MockAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/Mock/MockAgent.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/Mock/MockAgentHttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/Mock/MockAgentHttpHandler.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/Mock/MockAgentMessageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/Mock/MockAgentMessageProcessor.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/Mock/MockAgentRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/Mock/MockAgentRouter.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/Mock/MockUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/Mock/MockUtils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/Scenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/Scenarios.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/TestConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/TestConstants.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/TestSingleWallet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/TestSingleWallet.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/Utils/AgentUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/Utils/AgentUtils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/Utils/PoolUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/Utils/PoolUtils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/Utils/ProofServiceUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/Utils/ProofServiceUtils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries.TestHarness/Utils/ServiceUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries.TestHarness/Utils/ServiceUtils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Abstractions/IAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Abstractions/IAgent.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Abstractions/IAgentContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Abstractions/IAgentContext.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Abstractions/IAgentMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Abstractions/IAgentMiddleware.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Abstractions/IAgentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Abstractions/IAgentProvider.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Abstractions/IMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Abstractions/IMessageHandler.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/AgentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/AgentBase.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/AgentContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/AgentContext.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Converters/AgentEndpointJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Converters/AgentEndpointJsonConverter.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Converters/AgentMessageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Converters/AgentMessageReader.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Converters/AgentMessageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Converters/AgentMessageWriter.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/DefaultAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/DefaultAgent.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/DefaultAgentContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/DefaultAgentContext.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/DefaultAgentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/DefaultAgentProvider.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Extensions/AgentsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Extensions/AgentsExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/MessageHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/MessageHandlerBase.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/MessageType.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/MessageTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/MessageTypes.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/MessageTypesHttps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/MessageTypesHttps.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Models/AgentEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Models/AgentEndpoint.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Models/AgentMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Models/AgentMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Models/AgentOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Models/AgentOwner.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Models/MessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Models/MessageContext.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Models/PackedMessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Models/PackedMessageContext.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Models/UnpackedMessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Models/UnpackedMessageContext.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Transport/DefaultMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Transport/DefaultMessageService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Transport/HttpMessageDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Transport/HttpMessageDispatcher.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Transport/IMessageDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Transport/IMessageDispatcher.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Transport/IMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Transport/IMessageService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Agents/Transport/MessageServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Agents/Transport/MessageServiceExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Common/AcknowledgeMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Common/AcknowledgeMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Common/AcknowledgementStatusConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Common/AcknowledgementStatusConstants.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Common/AgentFrameworkException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Common/AgentFrameworkException.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Common/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Common/ErrorCode.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Common/EventAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Common/EventAggregator.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Common/FormattingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Common/FormattingExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Common/IEventAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Common/IEventAggregator.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Common/LoggingEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Common/LoggingEvents.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Common/MediaTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Common/MediaTypes.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Common/ServiceMessageProcessingEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Common/ServiceMessageProcessingEvent.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Configuration/AgentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Configuration/AgentOptions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Configuration/AriesFrameworkBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Configuration/AriesFrameworkBuilder.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Configuration/DefaultProvisioningHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Configuration/DefaultProvisioningHostedService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Configuration/DefaultProvisioningService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Configuration/DefaultProvisioningService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Configuration/IProvisioningService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Configuration/IProvisioningService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Configuration/PoolConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Configuration/PoolConfigurationService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Configuration/ProvisioningRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Configuration/ProvisioningRecord.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Configuration/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Configuration/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Configuration/TxnAuthorAcceptanceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Configuration/TxnAuthorAcceptanceService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Attachments/AttachDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Attachments/AttachDecorator.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Attachments/AttachExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Attachments/AttachExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Attachments/Attachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Attachments/Attachment.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Attachments/AttachmentContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Attachments/AttachmentContent.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Attachments/JsonWebSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Attachments/JsonWebSignature.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/DecoratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/DecoratorExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Decorators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Decorators.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Payments/PaymentReceiptDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Payments/PaymentReceiptDecorator.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Payments/PaymentRequestDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Payments/PaymentRequestDecorator.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/PleaseAck/OnValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/PleaseAck/OnValues.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/PleaseAck/PleaseAckDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/PleaseAck/PleaseAckDecorator.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Service/ServiceDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Service/ServiceDecorator.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Service/ServiceDecoratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Service/ServiceDecoratorExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Signature/SignatureDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Signature/SignatureDecorator.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Signature/SignatureUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Signature/SignatureUtils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Threading/ThreadDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Threading/ThreadDecorator.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Threading/ThreadDecoratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Threading/ThreadDecoratorExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Decorators/Transport/TransportDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Decorators/Transport/TransportDecorator.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/BasicMessage/BasicMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/BasicMessage/BasicMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/BasicMessage/BasicMessageRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/BasicMessage/BasicMessageRecord.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/BasicMessage/IBasicMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/BasicMessage/IBasicMessageService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Discovery/DefaultDiscoveryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Discovery/DefaultDiscoveryHandler.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Discovery/DefaultDiscoveryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Discovery/DefaultDiscoveryService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Discovery/DiscoveryDiscloseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Discovery/DiscoveryDiscloseMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Discovery/DiscoveryQueryMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Discovery/DiscoveryQueryMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Discovery/IDiscoveryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Discovery/IDiscoveryService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Handshakes/Common/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Handshakes/Common/Connection.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Handshakes/Common/ConnectionAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Handshakes/Common/ConnectionAlias.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Handshakes/Common/ConnectionRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Handshakes/Common/ConnectionRecord.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Handshakes/Common/Dids/DidDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Handshakes/Common/Dids/DidDoc.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Handshakes/Common/Dids/DidDocKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Handshakes/Common/Dids/DidDocKey.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Handshakes/HandshakeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Handshakes/HandshakeConstants.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Handshakes/HandshakeProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Handshakes/HandshakeProtocol.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/IssueCredential/DefaultSchemaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/IssueCredential/DefaultSchemaService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/IssueCredential/DefaultTailsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/IssueCredential/DefaultTailsService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/IssueCredential/Models/Credential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/IssueCredential/Models/Credential.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/IssueCredential/Models/CredentialInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/IssueCredential/Models/CredentialInfo.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/IssueCredential/Records/SchemaRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/IssueCredential/Records/SchemaRecord.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/OutOfBand/DefaultOutOfBandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/OutOfBand/DefaultOutOfBandHandler.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/OutOfBand/DefaultOutOfBandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/OutOfBand/DefaultOutOfBandService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/OutOfBand/HandshakeReuseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/OutOfBand/HandshakeReuseMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/OutOfBand/IOutOfBandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/OutOfBand/IOutOfBandService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/OutOfBand/InvitationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/OutOfBand/InvitationMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/OutOfBand/InvitationMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/OutOfBand/InvitationMessageExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/PresentProof/DefaultProofHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/PresentProof/DefaultProofHandler.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/PresentProof/DefaultProofService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/PresentProof/DefaultProofService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/PresentProof/IProofService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/PresentProof/IProofService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/PresentProof/Models/PartialProof.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/PresentProof/Models/PartialProof.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/PresentProof/Models/ProofAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/PresentProof/Models/ProofAttribute.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/PresentProof/Models/ProofIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/PresentProof/Models/ProofIdentifier.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/PresentProof/Models/ProofProposal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/PresentProof/Models/ProofProposal.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/PresentProof/Models/ProofRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/PresentProof/Models/ProofRequest.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/PresentProof/Models/RequestedProof.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/PresentProof/Models/RequestedProof.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/PresentProof/ProofRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/PresentProof/ProofRecord.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/PresentProof/ProofServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/PresentProof/ProofServiceExtensions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/ProblemReport/ProblemImpact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/ProblemReport/ProblemImpact.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/ProblemReport/ProblemReportMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/ProblemReport/ProblemReportMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/ProblemReport/RetryParty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/ProblemReport/RetryParty.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Routing/DefaultForwardHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Routing/DefaultForwardHandler.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/Routing/ForwardMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/Routing/ForwardMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/TrustPing/DefaultTrustPingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/TrustPing/DefaultTrustPingHandler.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/TrustPing/TrustPingMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/TrustPing/TrustPingMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Features/TrustPing/TrustPingResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Features/TrustPing/TrustPingResponseMessage.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Hyperledger.Aries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Hyperledger.Aries.csproj -------------------------------------------------------------------------------- /src/Hyperledger.Aries/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/IsExternalInit.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Abstractions/ILedgerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Abstractions/ILedgerService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Abstractions/ILedgerSigningService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Abstractions/ILedgerSigningService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Abstractions/IPoolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Abstractions/IPoolService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/DefaultLedgerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/DefaultLedgerService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/DefaultLedgerSigningService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/DefaultLedgerSigningService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/DefaultPoolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/DefaultPoolService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/AuthorizationConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/AuthorizationConstraint.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/AuthorizationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/AuthorizationRule.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/ConstraintMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/ConstraintMetadata.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/CredDefId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/CredDefId.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/IndyAml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/IndyAml.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/IndyTaa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/IndyTaa.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/IndyTaaAcceptance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/IndyTaaAcceptance.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/ParseRegistryResponseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/ParseRegistryResponseResult.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/ParseResponseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/ParseResponseResult.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/PoolAwaitable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/PoolAwaitable.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/SchemaId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/SchemaId.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/ServiceEndpointResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/ServiceEndpointResult.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/TransactionActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/TransactionActions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/Models/TransactionTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/Models/TransactionTypes.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/V2/DefaultLedgerServiceV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/V2/DefaultLedgerServiceV2.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/V2/DefaultPoolServiceV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/V2/DefaultPoolServiceV2.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Ledger/V2/ResponseParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Ledger/V2/ResponseParser.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Payments/DefaultPaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Payments/DefaultPaymentService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Payments/IPaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Payments/IPaymentService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Payments/Models/AddressOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Payments/Models/AddressOptions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Payments/Models/IndyPaymentInputSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Payments/Models/IndyPaymentInputSource.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Payments/Models/IndyPaymentOutputSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Payments/Models/IndyPaymentOutputSource.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Payments/Models/PaymentAmount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Payments/Models/PaymentAmount.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Payments/Models/PaymentDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Payments/Models/PaymentDetails.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Payments/Models/PaymentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Payments/Models/PaymentItem.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Payments/Models/PaymentMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Payments/Models/PaymentMethod.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Payments/Models/PaymentMethodData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Payments/Models/PaymentMethodData.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Payments/Models/TransactionCost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Payments/Models/TransactionCost.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Payments/PaymentAddressRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Payments/PaymentAddressRecord.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Payments/PaymentRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Payments/PaymentRecord.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Signatures/DefaultSigningService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Signatures/DefaultSigningService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Signatures/ISigningService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Signatures/ISigningService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Storage/DefaultWalletRecordService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Storage/DefaultWalletRecordService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Storage/DefaultWalletService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Storage/DefaultWalletService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Storage/IWalletRecordService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Storage/IWalletRecordService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Storage/IWalletService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Storage/IWalletService.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Storage/Models/RecordTagAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Storage/Models/RecordTagAttribute.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Storage/Models/WalletConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Storage/Models/WalletConfiguration.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Storage/Models/WalletCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Storage/Models/WalletCredentials.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Storage/Models/WalletStorageConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Storage/Models/WalletStorageConfiguration.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Storage/Records/RecordBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Storage/Records/RecordBase.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Storage/Records/Search/SearchItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Storage/Records/Search/SearchItem.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Storage/Records/Search/SearchOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Storage/Records/Search/SearchOptions.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Storage/Records/Search/SearchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Storage/Records/Search/SearchQuery.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Storage/Records/Search/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Storage/Records/Search/SearchResult.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Utils/Base64UrlEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Utils/Base64UrlEncoder.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Utils/CredentialUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Utils/CredentialUtils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Utils/CryptoUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Utils/CryptoUtils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Utils/DidUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Utils/DidUtils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Utils/EnvironmentUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Utils/EnvironmentUtils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Utils/MessageUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Utils/MessageUtils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Utils/ResilienceUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Utils/ResilienceUtils.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Utils/TagConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Utils/TagConstants.cs -------------------------------------------------------------------------------- /src/Hyperledger.Aries/Utils/UriUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/Hyperledger.Aries/Utils/UriUtils.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Base64Url/Base64UrlString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Base64Url/Base64UrlString.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/ClaimPaths/ClaimPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/ClaimPaths/ClaimPath.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/ClaimPaths/ClaimPathComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/ClaimPaths/ClaimPathComponent.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/ClaimPaths/ClaimPathJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/ClaimPaths/ClaimPathJsonConverter.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/ClaimPaths/ClaimPathSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/ClaimPaths/ClaimPathSelection.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/ClaimPaths/Errors/ClaimPathIsEmptyError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/ClaimPaths/Errors/ClaimPathIsEmptyError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/ClaimPaths/Errors/ElementNotFoundError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/ClaimPaths/Errors/ElementNotFoundError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/ClaimPaths/Errors/NamespaceNotFoundError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/ClaimPaths/Errors/NamespaceNotFoundError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/ClaimPaths/Errors/SelectionIsEmptyError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/ClaimPaths/Errors/SelectionIsEmptyError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/ClaimPaths/Errors/UnknownComponentError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/ClaimPaths/Errors/UnknownComponentError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Colors/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Colors/Color.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Credentials/Abstractions/ICredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Credentials/Abstractions/ICredential.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Credentials/CredentialId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Credentials/CredentialId.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Credentials/CredentialSetId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Credentials/CredentialSetId.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Credentials/CredentialState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Credentials/CredentialState.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Credentials/Errors/CredentialIdError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Credentials/Errors/CredentialIdError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Credentials/Errors/CredentialSetIdError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Credentials/Errors/CredentialSetIdError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Cryptography/Abstractions/IKeyStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Cryptography/Abstractions/IKeyStore.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Cryptography/Errors/InvalidSignatureError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Cryptography/Errors/InvalidSignatureError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Cryptography/Models/KeyId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Cryptography/Models/KeyId.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Cryptography/Models/PublicKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Cryptography/Models/PublicKey.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Cryptography/Models/RawSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Cryptography/Models/RawSignature.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Encoding/Sha256Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Encoding/Sha256Hash.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Functional/Enumerable/EnumerableFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Functional/Enumerable/EnumerableFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Functional/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Functional/Error.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Functional/Errors/EnumCanNotBeParsedError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Functional/Errors/EnumCanNotBeParsedError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Functional/Errors/EnumerableIsEmptyError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Functional/Errors/EnumerableIsEmptyError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Functional/Errors/UriCanNotBeParsedError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Functional/Errors/UriCanNotBeParsedError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Functional/OptionFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Functional/OptionFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Functional/TaskFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Functional/TaskFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Functional/Validation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Functional/Validation.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Integrity/IntegrityUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Integrity/IntegrityUri.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/IsExternalInit.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Json/Errors/InvalidJsonError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Json/Errors/InvalidJsonError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Json/Errors/JArrayIsNullOrEmptyError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Json/Errors/JArrayIsNullOrEmptyError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Json/Errors/JTokenIsNotAJValueError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Json/Errors/JTokenIsNotAJValueError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Json/Errors/JTokenIsNotAnJArrayError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Json/Errors/JTokenIsNotAnJArrayError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Json/Errors/JTokenIsNotAnJObjectError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Json/Errors/JTokenIsNotAnJObjectError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Json/Errors/JValueIsNotAnIntError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Json/Errors/JValueIsNotAnIntError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Json/Errors/JsonFieldNotFoundError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Json/Errors/JsonFieldNotFoundError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Json/Errors/JsonIsNotAMapError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Json/Errors/JsonIsNotAMapError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Json/JsonFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Json/JsonFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Json/JsonSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Json/JsonSettings.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Localization/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Localization/Constants.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Localization/Errors/LocaleError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Localization/Errors/LocaleError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Localization/Locale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Localization/Locale.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Path/JsonPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Path/JsonPath.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/StatusList/IStatusListService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/StatusList/IStatusListService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/StatusList/StatusListEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/StatusList/StatusListEntry.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/StatusList/StatusListService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/StatusList/StatusListService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/String/StringFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/String/StringFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Uri/UriFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Uri/UriFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/Versioning/VersionFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/Versioning/VersionFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.Core/WalletFramework.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/WalletFramework.Core.csproj -------------------------------------------------------------------------------- /src/WalletFramework.Core/X509/X509CertificateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Core/X509/X509CertificateExtensions.cs -------------------------------------------------------------------------------- /src/WalletFramework.IsoProximity/EngagementPhase/QrReaderHandover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.IsoProximity/EngagementPhase/QrReaderHandover.cs -------------------------------------------------------------------------------- /src/WalletFramework.IsoProximity/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.IsoProximity/IsExternalInit.cs -------------------------------------------------------------------------------- /src/WalletFramework.IsoProximity/WalletFramework.IsoProximity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.IsoProximity/WalletFramework.IsoProximity.csproj -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Ble/Abstractions/IBleCentral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Ble/Abstractions/IBleCentral.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Ble/Abstractions/IBlePeripheral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Ble/Abstractions/IBlePeripheral.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Ble/BleDeviceAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Ble/BleDeviceAddress.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Ble/BleFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Ble/BleFlags.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Ble/BleFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Ble/BleFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Ble/BleRetrievalOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Ble/BleRetrievalOptions.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Ble/BleUuids/BleUuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Ble/BleUuids/BleUuid.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Ble/BleUuids/MdocReaderUuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Ble/BleUuids/MdocReaderUuids.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Ble/BleUuids/MdocUuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Ble/BleUuids/MdocUuids.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Ble/Errors/NoServiceUuidFoundError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Ble/Errors/NoServiceUuidFoundError.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Cbor/Abstractions/ICborSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Cbor/Abstractions/ICborSerializable.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Cbor/CborByteString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Cbor/CborByteString.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Cbor/CborFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Cbor/CborFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Cbor/Errors/CborDecodingError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Cbor/Errors/CborDecodingError.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Constants.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Abstractions/IAesGcmEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Abstractions/IAesGcmEncryption.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/AuthenticatedMdoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/AuthenticatedMdoc.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/DeviceAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/DeviceAuth.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/DeviceAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/DeviceAuthentication.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/DeviceEngagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/DeviceEngagement.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/DeviceKeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/DeviceKeyInfo.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/DeviceNameSpaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/DeviceNameSpaces.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/DeviceRetrievalMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/DeviceRetrievalMethod.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/DeviceSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/DeviceSignature.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/DeviceSigned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/DeviceSigned.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/DeviceSignedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/DeviceSignedItem.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Errors/InvalidEngagementUriScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Errors/InvalidEngagementUriScheme.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Errors/InvalidVersionError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Errors/InvalidVersionError.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Errors/UnsupportedCurveError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Errors/UnsupportedCurveError.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Errors/UnsupportedKeyTypeError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Errors/UnsupportedKeyTypeError.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Implementations/AesGcmEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Implementations/AesGcmEncryption.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Request/DataElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Request/DataElement.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Request/DataElementIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Request/DataElementIdentifier.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Request/DeviceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Request/DeviceRequest.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Request/DocRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Request/DocRequest.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Request/EncryptedDeviceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Request/EncryptedDeviceRequest.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Request/Errors/DecryptionError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Request/Errors/DecryptionError.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Request/ItemsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Request/ItemsRequest.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Response/DeviceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Response/DeviceResponse.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Response/DeviceResponseConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Response/DeviceResponseConst.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Response/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Response/Document.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Response/DocumentError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Response/DocumentError.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Response/EncryptedDeviceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Response/EncryptedDeviceResponse.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Response/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Response/ErrorCode.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Device/Response/StatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Device/Response/StatusCode.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Digests/Digest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Digests/Digest.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Digests/DigestAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Digests/DigestAlgorithm.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Digests/DigestId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Digests/DigestId.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Digests/ValueDigests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Digests/ValueDigests.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/DocType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/DocType.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Elements/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Elements/Element.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Elements/ElementArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Elements/ElementArray.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Elements/ElementIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Elements/ElementIdentifier.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Elements/ElementMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Elements/ElementMap.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Elements/ElementValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Elements/ElementValue.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Errors.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/IsExternalInit.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Issuer/IssuerAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Issuer/IssuerAuth.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Issuer/IssuerNameSpaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Issuer/IssuerNameSpaces.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Issuer/IssuerSigned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Issuer/IssuerSigned.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Issuer/IssuerSignedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Issuer/IssuerSignedItem.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Mdoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Mdoc.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/NameSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/NameSpace.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Reader/EngagementUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Reader/EngagementUri.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Reader/ReaderEngagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Reader/ReaderEngagement.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/Abstractions/IHandover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/Abstractions/IHandover.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/Cose/CoseEllipticCurves.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/Cose/CoseEllipticCurves.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/Cose/CoseKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/Cose/CoseKey.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/Cose/CoseLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/Cose/CoseLabel.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/Cose/CoseSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/Cose/CoseSignature.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/Cose/ProtectedHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/Cose/ProtectedHeaders.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/Cose/UnprotectedHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/Cose/UnprotectedHeaders.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/ECKeyPairGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/ECKeyPairGenerator.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/EngagementSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/EngagementSecurity.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/Errors/SessionDataError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/Errors/SessionDataError.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/KeyAuthorizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/KeyAuthorizations.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/KeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/KeyInfo.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/MobileSecurityObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/MobileSecurityObject.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/Random.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/SessionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/SessionData.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/SessionEstablishment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/SessionEstablishment.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/SessionTranscript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/SessionTranscript.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/SigStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/SigStructure.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/Security/ValidityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/Security/ValidityInfo.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocLib/WalletFramework.MdocLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocLib/WalletFramework.MdocLib.csproj -------------------------------------------------------------------------------- /src/WalletFramework.MdocVc/ClaimDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocVc/ClaimDisplay.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocVc/ClaimName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocVc/ClaimName.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocVc/Common/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocVc/Common/Errors.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocVc/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocVc/IsExternalInit.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocVc/MdocDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocVc/MdocDisplay.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocVc/MdocLogo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocVc/MdocLogo.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocVc/MdocName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocVc/MdocName.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocVc/MdocRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocVc/MdocRecord.cs -------------------------------------------------------------------------------- /src/WalletFramework.MdocVc/WalletFramework.MdocVc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.MdocVc/WalletFramework.MdocVc.csproj -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/ClientAttestation/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/ClientAttestation/HttpClientExtensions.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Constants.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Credential/CredentialFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Credential/CredentialFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/CredentialSet/CredentialSetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/CredentialSet/CredentialSetService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/CredentialSet/CredentialSetStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/CredentialSet/CredentialSetStorage.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/CredentialSet/ICredentialSetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/CredentialSet/ICredentialSetService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/CredentialSet/ICredentialSetStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/CredentialSet/ICredentialSetStorage.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/CredentialSet/Models/CredentialSetRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/CredentialSet/Models/CredentialSetRecord.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Database/Migration/MigrationStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Database/Migration/MigrationStep.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Errors/ErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Errors/ErrorResponse.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/FormattingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/FormattingExtensions.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/IsExternalInit.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/Abstractions/IMdocStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/Abstractions/IMdocStorage.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/AuthFlow/Models/AuthorizationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/AuthFlow/Models/AuthorizationData.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/AuthFlow/Models/ClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/AuthFlow/Models/ClientOptions.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/AuthFlow/Models/IssuanceSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/AuthFlow/Models/IssuanceSession.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/Authorization/DPop/Models/DPop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/Authorization/DPop/Models/DPop.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/Authorization/Models/OAuthToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/Authorization/Models/OAuthToken.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/Authorization/Models/TokenRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/Authorization/Models/TokenRequest.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/CredConfiguration/Models/Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/CredConfiguration/Models/Scope.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/CredOffer/Models/Grants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/CredOffer/Models/Grants.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/CredResponse/Mdoc/EncodedMdoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/CredResponse/Mdoc/EncodedMdoc.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/CredResponse/TransactionId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/CredResponse/TransactionId.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/Implementations/MdocFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/Implementations/MdocFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/Implementations/MdocStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/Implementations/MdocStorage.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/Issuer/Models/IssuerMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/Issuer/Models/IssuerMetadata.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vci/Issuer/Models/IssuerName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vci/Issuer/Models/IssuerName.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/AuthRequest/AuthRequestFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/AuthRequest/AuthRequestFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/AuthResponse/VpToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/AuthResponse/VpToken.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/ClaimPaths/ClaimPathFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/ClaimPaths/ClaimPathFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/DcApi/DcApiConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/DcApi/DcApiConstants.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/DcApi/Models/DcApiRequestBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/DcApi/Models/DcApiRequestBatch.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/DcApi/Models/DcApiRequestItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/DcApi/Models/DcApiRequestItem.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/DcApi/Models/Origin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/DcApi/Models/Origin.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/DcqlFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/DcqlFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Models/ClaimIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Models/ClaimIdentifier.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Models/ClaimQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Models/ClaimQuery.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Models/ClaimSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Models/ClaimSet.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Models/CredentialMetaQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Models/CredentialMetaQuery.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Models/DcqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Models/DcqlQuery.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Services/DcqlService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Services/DcqlService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Services/IDcqlService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Services/IDcqlService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Errors/AccessDeniedError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Errors/AccessDeniedError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Errors/InvalidRequestError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Errors/InvalidRequestError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Errors/VpError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Errors/VpError.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/HandoverConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/HandoverConstants.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Jwk/JwkFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Jwk/JwkFun.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Jwk/JwkSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Jwk/JwkSet.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/AuthorizationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/AuthorizationRequest.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/AuthorizationRequestUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/AuthorizationRequestUri.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/AuthorizationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/AuthorizationResponse.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/CandidateQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/CandidateQueryResult.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/ClientIdScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/ClientIdScheme.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/ClientJwksConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/ClientJwksConverter.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/ClientMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/ClientMetadata.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/CredentialSetCandidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/CredentialSetCandidate.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/Formats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/Formats.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/MDocFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/MDocFormat.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/Nonce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/Nonce.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/OidPresentationRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/OidPresentationRecord.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/OpenId4VpHandover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/OpenId4VpHandover.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/OpenId4VpHandoverInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/OpenId4VpHandoverInfo.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentationCandidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentationCandidate.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentationCandidateSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentationCandidateSet.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentationMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentationMap.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentationRequest.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentedClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentedClaim.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentedCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentedCredential.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentedCredentialSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/PresentedCredentialSet.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/RequestObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/RequestObject.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/SdJwtFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/SdJwtFormat.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/SelectedCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/SelectedCredential.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/VerifierAttestation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/VerifierAttestation.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/WalletMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/WalletMetadata.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Models/v1/OidPresentationRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Models/v1/OidPresentationRecord.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Query/CredentialRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Query/CredentialRequirement.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Services/CandidateQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Services/CandidateQueryService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Services/DcApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Services/DcApiService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Services/ICandidateQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Services/ICandidateQueryService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Services/IDcApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Services/IDcApiService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Services/IOid4VpClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Services/IOid4VpClientService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Services/IOid4VpHaipClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Services/IOid4VpHaipClient.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Services/IOid4VpRecordService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Services/IOid4VpRecordService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Services/IPresentationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Services/IPresentationService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Services/Oid4VpClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Services/Oid4VpClientService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Services/Oid4VpHaipClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Services/Oid4VpHaipClient.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Services/Oid4VpRecordService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Services/Oid4VpRecordService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Oid4Vp/Services/PresentationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Oid4Vp/Services/PresentationService.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Payment/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Payment/Currency.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Payment/CurrencyAmount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Payment/CurrencyAmount.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Payment/Payee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Payment/Payee.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Payment/PaymentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Payment/PaymentData.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Payment/PaymentSchedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Payment/PaymentSchedule.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Payment/PaymentTransactionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Payment/PaymentTransactionData.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly:InternalsVisibleTo("WalletFramework.Oid4Vc.Tests")] 4 | -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Qes/Authorization/DocumentDigest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Qes/Authorization/DocumentDigest.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Qes/Authorization/DocumentDigestLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Qes/Authorization/DocumentDigestLabel.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/Qes/CertCreation/TermsConditionsUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/Qes/CertCreation/TermsConditionsUri.cs -------------------------------------------------------------------------------- /src/WalletFramework.Oid4Vc/WalletFramework.Oid4Vc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.Oid4Vc/WalletFramework.Oid4Vc.csproj -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtLib/Models/Claim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtLib/Models/Claim.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtLib/Models/Disclosure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtLib/Models/Disclosure.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtLib/Models/PresentationFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtLib/Models/PresentationFormat.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtLib/Models/SdJwtDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtLib/Models/SdJwtDoc.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtLib/Roles/IHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtLib/Roles/IHolder.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtLib/Roles/IIssuer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtLib/Roles/IIssuer.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtLib/Roles/IVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtLib/Roles/IVerifier.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtLib/Roles/Implementation/Holder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtLib/Roles/Implementation/Holder.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtLib/Roles/Implementation/Issuer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtLib/Roles/Implementation/Issuer.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtLib/Roles/Implementation/Verifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtLib/Roles/Implementation/Verifier.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtLib/Roles/Issuer/SdToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtLib/Roles/Issuer/SdToken.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtLib/WalletFramework.SdJwtLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtLib/WalletFramework.SdJwtLib.csproj -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtVc/IsExternalInit.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/Models/Credential/SdJwtDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtVc/Models/Credential/SdJwtDisplay.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/Models/Credential/SdJwtMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtVc/Models/Credential/SdJwtMetadata.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/Models/Records/SdJwtRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtVc/Models/Records/SdJwtRecord.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/Models/Vct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtVc/Models/Vct.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/Models/VctMetadata/Rendering/Logo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtVc/Models/VctMetadata/Rendering/Logo.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/Models/VctMetadata/VctMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtVc/Models/VctMetadata/VctMetadata.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/Models/VctMetadata/VctMetadataClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtVc/Models/VctMetadata/VctMetadataClaim.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/Models/VctMetadata/VctMetadataDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtVc/Models/VctMetadata/VctMetadataDisplay.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly:InternalsVisibleTo("WalletFramework.SdJwtVc.Tests")] 4 | -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtVc/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/Services/IVctMetadataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtVc/Services/IVctMetadataService.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/Services/VctMetadataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtVc/Services/VctMetadataService.cs -------------------------------------------------------------------------------- /src/WalletFramework.SdJwtVc/WalletFramework.SdJwtVc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.SdJwtVc/WalletFramework.SdJwtVc.csproj -------------------------------------------------------------------------------- /src/WalletFramework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/src/WalletFramework.sln -------------------------------------------------------------------------------- /test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/.editorconfig -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/ConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/ConfigurationTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/ConnectionRecordVersioningTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/ConnectionRecordVersioningTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/ConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/ConverterTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Decorators/AttachmentContentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Decorators/AttachmentContentTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Decorators/AttachmentDecoratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Decorators/AttachmentDecoratorTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Decorators/SignatorDecoratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Decorators/SignatorDecoratorTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Decorators/ThreadingDecoratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Decorators/ThreadingDecoratorTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Decorators/TransportDecoratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Decorators/TransportDecoratorTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/DidCommServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/DidCommServiceTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/DidDocTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/DidDocTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/DidUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/DidUtilsTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/EventAggregatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/EventAggregatorTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Extensions/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Extensions/ObjectExtensions.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/GlobalSuppressions.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Hyperledger.Aries.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Hyperledger.Aries.Tests.csproj -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/InProcAgentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/InProcAgentTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Integration/ConnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Integration/ConnectionTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Integration/CredentialTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Integration/CredentialTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Integration/DidExchangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Integration/DidExchangeTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Integration/DiscoveryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Integration/DiscoveryTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Integration/MessageTypesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Integration/MessageTypesTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Integration/OutOfBandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Integration/OutOfBandTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Integration/ProofTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Integration/ProofTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/LedgerServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/LedgerServiceTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/MessageServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/MessageServiceTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/MessageUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/MessageUtilsTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/MockExtendedConnectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/MockExtendedConnectionService.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/MockMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/MockMessageHandler.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Payments/PaymentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Payments/PaymentTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Payments/ProtocolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Payments/ProtocolTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Payments/TransferTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Payments/TransferTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/PoolServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/PoolServiceTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Protocols/ConnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Protocols/ConnectionTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Protocols/CredentialTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Protocols/CredentialTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Protocols/CredentialTransientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Protocols/CredentialTransientTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Protocols/CredentialUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Protocols/CredentialUtilsTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Protocols/CredentialV1Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Protocols/CredentialV1Tests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Protocols/DidExchangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Protocols/DidExchangeTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Protocols/DiscoveryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Protocols/DiscoveryTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Protocols/OutOfBandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Protocols/OutOfBandTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Protocols/ProofTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Protocols/ProofTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Protocols/RevocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Protocols/RevocationTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/ProvisioningServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/ProvisioningServiceTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/RecordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/RecordTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Routing/BackupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Routing/BackupTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Routing/RoutingInboxHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Routing/RoutingInboxHandlerTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Routing/RoutingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Routing/RoutingTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/Routing/WalletBackupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/Routing/WalletBackupTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/RuntimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/RuntimeTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/SchemaServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/SchemaServiceTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/SearchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/SearchTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/StateMachineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/StateMachineTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/WalletTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/WalletTests.cs -------------------------------------------------------------------------------- /test/Hyperledger.Aries.Tests/pool_genesis.txn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/Hyperledger.Aries.Tests/pool_genesis.txn -------------------------------------------------------------------------------- /test/WalletFramework.Core.Tests/Path/ClaimPathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Core.Tests/Path/ClaimPathTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.Core.Tests/StatusList/StatusListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Core.Tests/StatusList/StatusListTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.Core.Tests/Validation/ApplyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Core.Tests/Validation/ApplyTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.Core.Tests/Validation/ValidationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Core.Tests/Validation/ValidationTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.Core.Tests/WalletFramework.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Core.Tests/WalletFramework.Core.Tests.csproj -------------------------------------------------------------------------------- /test/WalletFramework.Integration.Tests/WalletFramework.Integration.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; 2 | -------------------------------------------------------------------------------- /test/WalletFramework.MdocLib.Tests/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.MdocLib.Tests/Helpers.cs -------------------------------------------------------------------------------- /test/WalletFramework.MdocLib.Tests/MdocSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.MdocLib.Tests/MdocSamples.cs -------------------------------------------------------------------------------- /test/WalletFramework.MdocLib.Tests/MdocTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.MdocLib.Tests/MdocTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.MdocVc.Tests/MdocRecordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.MdocVc.Tests/MdocRecordTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.MdocVc.Tests/MdocVcSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.MdocVc.Tests/MdocVcSamples.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Extensions/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Oid4Vc.Tests/Extensions/ObjectExtensions.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Oid4Vp/DcApi/DcApiSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Oid4Vc.Tests/Oid4Vp/DcApi/DcApiSamples.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Dcql/ClaimSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Dcql/ClaimSetTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Dcql/DcqlClaimSetsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Dcql/DcqlClaimSetsTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Dcql/DcqlParsingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Dcql/DcqlParsingTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Dcql/DcqlResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Dcql/DcqlResultTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Dcql/Samples/DcqlSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Dcql/Samples/DcqlSamples.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Jwk/JwkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Jwk/JwkTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Jwk/Samples/JwkSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Oid4Vc.Tests/Oid4Vp/Jwk/Samples/JwkSamples.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Payment/PaymentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Oid4Vc.Tests/Payment/PaymentTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Samples/MdocSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Oid4Vc.Tests/Samples/MdocSamples.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Samples/SdJwtSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Oid4Vc.Tests/Samples/SdJwtSamples.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Signatures/SignatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.Oid4Vc.Tests/Signatures/SignatureTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.Oid4Vc.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtLib.Tests/DisclosureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtLib.Tests/DisclosureTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtLib.Tests/Examples/BaseExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtLib.Tests/Examples/BaseExample.cs -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtLib.Tests/Examples/Example1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtLib.Tests/Examples/Example1.cs -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtLib.Tests/Examples/Example2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtLib.Tests/Examples/Example2.cs -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtLib.Tests/Examples/Example3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtLib.Tests/Examples/Example3.cs -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtLib.Tests/Examples/Example4a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtLib.Tests/Examples/Example4a.cs -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtLib.Tests/Examples/Example5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtLib.Tests/Examples/Example5.cs -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtLib.Tests/HolderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtLib.Tests/HolderTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtLib.Tests/Issuer/IssuerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtLib.Tests/Issuer/IssuerTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtLib.Tests/SdJwtDocTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtLib.Tests/SdJwtDocTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtLib.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using NUnit.Framework; -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtVc.Tests/Samples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtVc.Tests/Samples.cs -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtVc.Tests/SdJwtRecordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtVc.Tests/SdJwtRecordTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtVc.Tests/SdJwtVcHolderServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtVc.Tests/SdJwtVcHolderServiceTests.cs -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtVc.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /test/WalletFramework.SdJwtVc.Tests/VctMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation-labs/wallet-framework-dotnet/HEAD/test/WalletFramework.SdJwtVc.Tests/VctMetadataTests.cs --------------------------------------------------------------------------------