@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
12 lines (11 loc) • 386 B
TypeScript
/// <reference types="node" />
/// <reference types="pouchdb-core" />
/**
* Class that performs hashing operations using the multihash format.
*/
export default class Multihash {
/**
* Hashes the content using the hashing algorithm specified by the latest protocol version.
*/
static hash(content: Buffer, hashAlgorithmInMultihashCode: number): Buffer;
}