| 1514 | } |
| 1515 | |
| 1516 | export interface ClearTextStream extends stream.Duplex { |
| 1517 | authorized: boolean; |
| 1518 | authorizationError: Error; |
| 1519 | getPeerCertificate(): any; |
| 1520 | getCipher: { |
| 1521 | name: string; |
| 1522 | version: string; |
| 1523 | }; |
| 1524 | address: { |
| 1525 | port: number; |
| 1526 | family: string; |
| 1527 | address: string; |
| 1528 | }; |
| 1529 | remoteAddress: string; |
| 1530 | remotePort: number; |
| 1531 | } |
| 1532 | |
| 1533 | export interface SecurePair { |
| 1534 | encrypted: any; |
nothing calls this directly
no outgoing calls
no test coverage detected