UNPKG

863 BMarkdownView Raw
1# Installation
2> `npm install --save @types/cipher-base`
3
4# Summary
5This package contains type definitions for cipher-base (https://github.com/crypto-browserify/cipher-base).
6
7# Details
8Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cipher-base.
9## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cipher-base/index.d.ts)
10````ts
11/// <reference types="node" />
12
13declare abstract class CipherBase {
14 constructor(hashMode?: string);
15 abstract final(): Buffer;
16 abstract update(value: Buffer, inputEnc?: string, outputEnc?: string): Buffer;
17}
18
19export = CipherBase;
20
21````
22
23### Additional Details
24 * Last updated: Mon, 06 Nov 2023 22:41:05 GMT
25 * Dependencies: [@types/node](https://npmjs.com/package/@types/node)
26
27# Credits
28These definitions were written by .
29
\No newline at end of file