mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
ed5a5c154d
Move to a monorepo structure with submodules - Rename status-protocol-go to status-go/protocol
20 lines
351 B
Go
20 lines
351 B
Go
package peer
|
|
|
|
import (
|
|
"crypto/ecdsa"
|
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
|
|
"github.com/vacp2p/mvds/state"
|
|
)
|
|
|
|
func PublicKeyToPeerID(k ecdsa.PublicKey) state.PeerID {
|
|
var p state.PeerID
|
|
copy(p[:], crypto.FromECDSAPub(&k))
|
|
return p
|
|
}
|
|
|
|
func PeerIDToPublicKey(p state.PeerID) (*ecdsa.PublicKey, error) {
|
|
return crypto.UnmarshalPubkey(p[:])
|
|
}
|