0.0.29 • Published 5 months ago

@validatedid/vc-vp-validator v0.0.29

Weekly downloads
-
License
ISC
Repository
github
Last release
5 months ago

vc-vp-validator

vc-vp-validator is a library designed to provide validation functionality for JSON Web Tokens (JWTs) and JSON objects representing verifiable credentials and presentations. It exposes four validation functions tailored to validate both JSON and JWT credentials and presentations. This library supports various DID methods including did:key, did:ebsi, and did:web.

!NOTE
For @validatedid internal use.

Features

  • Validate JSON Web Tokens (JWTs) and JSON objects representing verifiable credentials (VCs) and presentations (VPs).
  • Support for multiple DID methods: did:key, did:ebsi, and did:web.
  • Special handling for EBSI issued credentials and DID:key presentations containing EBSI issued credentials.
  • Validate DID-based authentication tokens using validateDidAuthToken

Installation

You can install vc-vp-validator via npm:

npm install vc-vp-validator

Usage

Importing the library

import {
  validateJwtVC,
  validateJsonVC,
  validateJwtVP,
  validateJsonVP,
  validateDidAuthToken,
} from 'vc-vp-validator';

Validating JSON Web Token (JWT) Verifiable Credentials (VCs)

const validationResult = await validateJwtVC(jwtCredential, options);

Validating JSON Verifiable Credentials (VCs)

const validationResult = await validateJsonVC(jsonCredential, options);

Validating JSON Web Token (JWT) Verifiable Presentations (VPs)

const validationResult = await validateJwtVP(jwtPresentation, audience, options);

Validating JSON Verifiable Presentations (VPs)

const validationResult = await validateJsonVP(jsonPresentation, audience, options);

Validating DID-based Authentication Token

To validate a DID-based authentication token (e.g., id_token), you can use the validateDidAuthIdToken function. This function checks the validity of the token, ensures it contains the correct issuer (iss) and algorithm (alg), and validates the token's signature.

const validationResult = await validateDidAuthToken(id_token);

Optional option parameters

Both credential validation functions (validateJwtVC and validateJsonVC) and presentation validation functions (validateJwtVP and validateJsonVP) support optional options parameters.

export interface CredentialValidationOptions {
didRegistry?: string;
ebsiAuthority?: string;
}
export interface PresentationValidationOptions {
presentationSubmission?: PresentationSubmission;
presentationDefinition?: PresentationDefinition;
didRegistry?: string;
ebsiAuthority?: string;
}

Validation Response

The response object will follow the interface:

export interface ValidationResult {
valid: boolean;
messages?: string[];
}

If the valid property is false, the messages array will include reasons why the credential is not valid.

0.0.28

6 months ago

0.0.29

5 months ago

0.0.26

6 months ago

0.0.27

6 months ago

0.0.24

7 months ago

0.0.25

7 months ago

0.0.21

8 months ago

0.0.22

8 months ago

0.0.23

8 months ago

0.0.20

8 months ago

0.0.17

8 months ago

0.0.18

8 months ago

0.0.19

8 months ago

0.0.16

11 months ago

0.0.14

1 year ago

0.0.15

1 year ago

0.0.13

1 year ago

0.0.12

1 year ago

0.0.11

1 year ago