[−][src]Struct ssb_crypto::Signature
A cryptographic signature of some content, generated by Keypair::sign
and verified by PublicKey::verify.
Implementations
impl Signature[src]
pub const SIZE: usize[src]
Size of a signature, in bytes (== 64).
pub fn from_slice(s: &[u8]) -> Option<Self>[src]
Deserialize a signature from a byte slice. The slice length must be 64.
pub fn from_base64(s: &str) -> Option<Self>[src]
Deserialize a signature from a base-64 encoded string. Ignores optional .sig.ed25519 suffix.
Example
use ssb_crypto::Signature; let s = "QTsCZ+INzDENs1dAdej14Lsp1v2UCXUtRZBv4HlDGo6WZn29ZYM5lZtxnyNC53LxX0ucY1x8NlC1A1RjY7FHBA==.sig.ed25519"; let sig = Signature::from_base64(s).unwrap();
pub fn as_base64(&self) -> String[src]
Does not include ".sig.ed25519" suffix or a prefix sigil.
Example
use ssb_crypto::Signature; let s = "QTsCZ+INzDENs1dAdej14Lsp1v2UCXUtRZBv4HlDGo6WZn29ZYM5lZtxnyNC53LxX0ucY1x8NlC1A1RjY7FHBA=="; let sig = Signature::from_base64(s).unwrap(); assert_eq!(sig.as_base64(), s);
Trait Implementations
impl AsBytes for Signature[src]
pub fn only_derive_is_allowed_to_implement_this_trait() where
Self: Sized, [src]
Self: Sized,
pub fn as_bytes(&self) -> &[u8][src]
pub fn as_bytes_mut(&mut self) -> &mut [u8] where
Self: FromBytes, [src]
Self: FromBytes,
impl Clone for Signature[src]
impl Copy for Signature[src]
impl Debug for Signature[src]
impl Eq for Signature[src]
impl FromBytes for Signature[src]
pub fn only_derive_is_allowed_to_implement_this_trait() where
Self: Sized, [src]
Self: Sized,
impl PartialEq<Signature> for Signature[src]
Auto Trait Implementations
impl RefUnwindSafe for Signature[src]
impl Send for Signature[src]
impl Sync for Signature[src]
impl Unpin for Signature[src]
impl UnwindSafe for Signature[src]
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,
pub 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> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub 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.
pub 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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,