Struct cardano_serialization_lib::crypto::PublicKey
source · [−]pub struct PublicKey(_);
Expand description
ED25519 key used as public key
Implementations
sourceimpl PublicKey
impl PublicKey
sourcepub fn from_bech32(bech32_str: &str) -> Result<PublicKey, JsError>
pub fn from_bech32(bech32_str: &str) -> Result<PublicKey, JsError>
Get public key from its bech32 representation Example:
const pkey = PublicKey.from_bech32('ed25519_pk1dgaagyh470y66p899txcl3r0jaeaxu6yd7z2dxyk55qcycdml8gszkxze2');
pub fn to_bech32(&self) -> String
pub fn as_bytes(&self) -> Vec<u8>
pub fn from_bytes(bytes: &[u8]) -> Result<PublicKey, JsError>
pub fn verify(&self, data: &[u8], signature: &Ed25519Signature) -> bool
pub fn hash(&self) -> Ed25519KeyHash
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PublicKey
impl Send for PublicKey
impl Sync for PublicKey
impl Unpin for PublicKey
impl UnwindSafe for PublicKey
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more