UNPKG

verifiablecredentials-crypto-sdk-typescript-keys

Version:
34 lines (33 loc) 658 B
/** * 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; }