libp2p
    Preparing search index...

    Module @libp2p/plaintext

    A connection encrypter that does no connection encryption and trusts the remote peer to provide the correct PeerId.

    This should not be used in production and is for research purposes only.

    import { createLibp2p } from 'libp2p'
    import { plaintext } from '@libp2p/plaintext'

    const node = await createLibp2p({
    // ...other options
    connectionEncrypters: [
    plaintext()
    ]
    })

    Interfaces

    PlaintextComponents

    Functions

    plaintext