MCPcopy Create free account
hub / github.com/basarat/typescript-book / Decipher

Interface Decipher

code/compiler/typings/node/node.d.ts:1599–1605  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1597 export function createDecipher(algorithm: string, password: any): Decipher;
1598 export function createDecipheriv(algorithm: string, key: any, iv: any): Decipher;
1599 interface Decipher {
1600 update(data: Buffer): Buffer;
1601 update(data: string, input_encoding?: string, output_encoding?: string): string;
1602 final(): Buffer;
1603 final(output_encoding: string): string;
1604 setAutoPadding(auto_padding: boolean): void;
1605 }
1606 export function createSign(algorithm: string): Signer;
1607 interface Signer {
1608 update(data: any): void;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected