Struct libp2p::core::identity::ed25519::PublicKey [−][src]
pub struct PublicKey(_);
An Ed25519 public key.
Implementations
impl PublicKey
[src]
impl PublicKey
[src]pub fn verify(&self, msg: &[u8], sig: &[u8]) -> bool
[src]
Verify the Ed25519 signature on a message using the public key.
pub fn encode(&self) -> [u8; 32]
[src]
Encode the public key into a byte array in compressed form, i.e. where one coordinate is represented by a single bit.
pub fn decode(k: &[u8]) -> Result<PublicKey, DecodingError>
[src]
Decode a public key from a byte array as produced by encode
.