verifiablecredentials-crypto-sdk-typescript-keys
Version:
Package for managing keys in the DID space.
34 lines (33 loc) • 658 B
TypeScript
/**
* Class for W3C Crypto API constants
*/
export default class W3cCryptoApiConstants {
/**
* Define W3C JWK constants
*/
static Jwk: string;
/**
* Define W3C algorithm constants
*/
static RsaOaep: string;
/**
* Define W3C algorithm constants
*/
static RsaSsaPkcs1V15: string;
/**
* Define W3C algorithm constants
*/
static Sha256: string;
/**
* Define W3C algorithm constants
*/
static Sha512: string;
/**
* Define W3C algorithm constants
*/
static AesGcm: string;
/**
* Define W3C algorithm constants
*/
static Hmac: string;
}