UNPKG

@microsoft/useragent-sdk

Version:

SDK for building decentralized identity wallets and enterprise agents.

17 lines (16 loc) 525 B
import { SubtleCrypto } from 'webcrypto-core'; import { ISubtleCrypto } from './ISubtleCryptoExtension'; /** * Subtle crypto for node * */ export default class SubtleCryptoNode implements ISubtleCrypto { private static crypto; /** * Returns the @class SubtleCrypto implementation for the nodes environment */ getSubtleCrypto(): SubtleCrypto; /** * Returns the @class SubtleCrypto implementation for the nodes environment */ static getSubtleCrypto(): SubtleCrypto; }