Socket
Socket
Sign inDemoInstall

@extrimian/vc-verifier

Package Overview
Dependencies
313
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @extrimian/vc-verifier

This package provides the functionality to verify a verifiable credential.


Version published
Weekly downloads
12
increased by50%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Extrimian - VS Verifier

This package provides the functionality to verify a verifiable credential.

VCVerifierService

To verify a credential you can initialize a VCVerifierService

constructor(private params: {
        didDocumentResolver: (did: string) => Promise<DIDDocument>
}) {

}

This service requires a callback to resolve a DID. You need to implement the callback so that given a did returns a DIDDocument

Verify Method

Then you can call verify method to verify the credential

async verify(vc: VerifiableCredential | string, purpose: Purpose): Promise<{ result: boolean, errors?: string[] }> {

}
  • vc: Verifiable credential (with proofs) to verify
  • purpose: purpose to verify (this is checked using the did document)

FAQs

Last updated on 29 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc