@hazae41/cadenas
v0.4.2
Published
Zero-copy TLS protocol for the web
Downloads
86
Maintainers
Readme
npm i @hazae41/cadenas
DO NOT USE
This is experimental software in early development
- It has security issues
- Things change quickly
Features
Current features
- 100% TypeScript and ESM
- Zero-copy reading and writing
- Transport agnostic (HTTP, WebSocket)
- WebStreams based backpressure
- Common CA Database certificates
- TLS 1.2
Upcoming Features
- TLS 1.3
- Zero RTT
Usage
import { TlsClientDuplex, Ciphers } from "@hazae41/cadenas"
function encrypt(tcp: ReadableWritablePair<Opaque, Writable>): ReadableWritablePair<Opaque, Writable> {
const ciphers = [Ciphers.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384]
const tls = new TlsClientDuplex({ host_name: "example.com", ciphers })
tcp.readable.pipeTo(tls.inner.writable).catch(() => {})
tls.inner.readable.pipeTo(tcp.writable).catch(() => {})
return tls.outer
}