UNPKG

@microsoft/useragent-sdk

Version:

SDK for building decentralized identity wallets and enterprise agents.

34 lines (33 loc) 691 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; }