[−][src]Struct stellar_base::signature::Signature
A signature.
Implementations
impl Signature[src]
pub fn sign(secret: &SecretKey, data: &[u8]) -> Signature[src]
Signs data using the secret key.
pub fn from_slice(sb: &[u8]) -> Result<Signature>[src]
Returns a Signature from bytes.
pub fn len(&self) -> usize[src]
Length in bytes of the signature.
pub fn is_empty(&self) -> bool[src]
Returns true if the signature has no bytes.
pub fn to_vec(&self) -> Vec<u8>[src]
Convert to Vec<u8>.
pub fn as_bytes(&self) -> &[u8][src]
Inner buffer as slice.
pub fn verify(&self, public: &PublicKey, data: &[u8]) -> bool[src]
Verifise the signature againt the data and the public key.
Returns true if the signature is valid, false otherwise.
pub fn to_xdr(&self) -> Result<Signature>[src]
Returns xdr object.
pub fn from_xdr(x: &Signature) -> Result<Signature>[src]
Creates from xdr object.
Trait Implementations
impl Clone for Signature[src]
impl Debug for Signature[src]
impl Eq for Signature[src]
impl PartialEq<Signature> for Signature[src]
impl StructuralEq for Signature[src]
impl StructuralPartialEq for Signature[src]
Auto Trait Implementations
impl RefUnwindSafe for Signature
impl Send for Signature
impl Sync for Signature
impl Unpin for Signature
impl UnwindSafe for Signature
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,