mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-10-18 14:50:50 +08:00
10 lines
124 B
Go
10 lines
124 B
Go
package pb
|
|
|
|
import (
|
|
"riasc.eu/wice/pkg/crypto"
|
|
)
|
|
|
|
func (p *Peer) Key() crypto.Key {
|
|
return *(*crypto.Key)(p.PublicKey)
|
|
}
|