mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-11 02:35:18 +00: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
|