UNPKG

@ar.io/sdk

Version:

[![codecov](https://codecov.io/gh/ar-io/ar-io-sdk/graph/badge.svg?token=7dXKcT7dJy)](https://codecov.io/gh/ar-io/ar-io-sdk)

5 lines (4 loc) 340 B
import { Readable } from 'stream'; export declare const hashReadableToB64Url: (stream: Readable, algorithm?: string) => Promise<string>; export declare const hashReadableStreamToB64Url: (stream: ReadableStream, algorithm?: string) => Promise<string>; export declare const hashBufferToB64Url: (buffer: Buffer, algorithm?: string) => string;