mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 18:37:26 +08:00
8 lines
290 B
Go
8 lines
290 B
Go
// Package pnet provides interfaces for private networking in libp2p.
|
|
package pnet
|
|
|
|
// A PSK enables private network implementation to be transparent in libp2p.
|
|
// It is used to ensure that peers can only establish connections to other peers
|
|
// that are using the same PSK.
|
|
type PSK []byte
|