Implements the spec at https://github.com/libp2p/specs/blob/master/tls/tls.md
import { createLibp2p } from 'libp2p'import { tls } from '@libp2p/tls'const node = await createLibp2p({ // ...other options connectionEncrypters: [ tls() ]}) Copy
import { createLibp2p } from 'libp2p'import { tls } from '@libp2p/tls'const node = await createLibp2p({ // ...other options connectionEncrypters: [ tls() ]})
Implements the spec at https://github.com/libp2p/specs/blob/master/tls/tls.md
Example