| 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; |
nothing calls this directly
no outgoing calls
no test coverage detected