| 1588 | export function createCipher(algorithm: string, password: any): Cipher; |
| 1589 | export function createCipheriv(algorithm: string, key: any, iv: any): Cipher; |
| 1590 | interface Cipher { |
| 1591 | update(data: Buffer): Buffer; |
| 1592 | update(data: string, input_encoding?: string, output_encoding?: string): string; |
| 1593 | final(): Buffer; |
| 1594 | final(output_encoding: string): string; |
| 1595 | setAutoPadding(auto_padding: boolean): void; |
| 1596 | } |
| 1597 | export function createDecipher(algorithm: string, password: any): Decipher; |
| 1598 | export function createDecipheriv(algorithm: string, key: any, iv: any): Decipher; |
| 1599 | interface Decipher { |
nothing calls this directly
no outgoing calls
no test coverage detected