@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
15 lines (14 loc) • 513 B
TypeScript
import { CryptoFactory, IKeyStore } from '../..';
import { SubtleCrypto } from 'webcrypto-core';
/**
* Crypto operations class to return Elliptic subtle crypto
*/
export default class EllipticCryptoOperations extends CryptoFactory {
private elliptic;
constructor(keyStore: IKeyStore, crypto: SubtleCrypto);
/**
* Gets all of the message signing Algorithms from the plugin
* @returns a subtle crypto object for message signing
*/
getMessageSigners(): SubtleCrypto;
}