[−][src]Struct sp_core::ecdsa::Signature
A signature (a 512-bit value, plus 8 bits for recovery ID).
Implementations
impl Signature[src][−]
pub fn from_raw(data: [u8; 65]) -> Signature[src][−]
A new instance from the given 65-byte data.
NOTE: No checking goes on to ensure this is a real signature. Only use it if you are certain that the array actually is a signature. GIGO!
pub fn from_slice(data: &[u8]) -> Self[src][−]
A new instance from the given slice that should be 65 bytes long.
NOTE: No checking goes on to ensure this is a real signature. Only use it if you are certain that the array actually is a signature. GIGO!
pub fn recover<M: AsRef<[u8]>>(&self, message: M) -> Option<Public>[src][−]
Recover the public key from this signature and a message.
Trait Implementations
impl AsMut<[u8]> for Signature[src][+]
impl AsRef<[u8; 65]> for Signature[src][+]
impl AsRef<[u8]> for Signature[src][+]
impl Clone for Signature[src][+]
impl CryptoType for Signature[src]
impl Debug for Signature[src][+]
impl Decode for Signature[src][+]
impl Default for Signature[src][+]
impl<'de> Deserialize<'de> for Signature[src][+]
impl Encode for Signature[src][+]
impl EncodeLike<Signature> for Signature[src]
impl Eq for Signature[src]
impl From<(Signature, RecoveryId)> for Signature[src][+]
impl From<Signature> for [u8; 65][src][+]
impl Hash for Signature[src][+]
impl PartialEq<Signature> for Signature[src][+]
impl PassBy for Signature[src]
impl PassByInner for Signature[src][+]
impl Serialize for Signature[src][+]
impl<'_> TryFrom<&'_ [u8]> for Signature[src][+]
impl<'a> TryFrom<&'a Signature> for (Signature, RecoveryId)[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, U> AsByteSlice<T> for U where
T: ToByteSlice,
U: AsRef<[T]> + ?Sized, [src][+]
T: ToByteSlice,
U: AsRef<[T]> + ?Sized,
impl<T, U> AsMutByteSlice<T> for U where
T: ToMutByteSlice,
U: AsMut<[T]> + ?Sized, [src][+]
T: ToMutByteSlice,
U: AsMut<[T]> + ?Sized,
impl<U> AsMutSliceOf for U where
U: AsMut<[u8]> + ?Sized, [src][+]
U: AsMut<[u8]> + ?Sized,
impl<U> AsSliceOf for U where
U: AsRef<[u8]> + ?Sized, [src][+]
U: AsRef<[u8]> + ?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,
impl<T> Clear for T where
T: InitializableFromZeroed + ?Sized, [src][+]
T: InitializableFromZeroed + ?Sized,
impl<S> Codec for S where
S: Encode + Decode, [src]
S: Encode + Decode,
impl<T, X> Decode for X where
T: Decode + Into<X>,
X: WrapperTypeDecode<Wrapped = T>, [src][+]
T: Decode + Into<X>,
X: WrapperTypeDecode<Wrapped = T>,
impl<T> DecodeAll for T where
T: Decode, [src][+]
T: Decode,
impl<T> DecodeLimit for T where
T: Decode, [src][+]
T: Decode,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T, X> Encode for X where
T: Encode + ?Sized,
X: WrapperTypeEncode<Target = T>, [src][+]
T: Encode + ?Sized,
X: WrapperTypeEncode<Target = T>,
impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
T: Encode, [src]
T: Encode,
impl<'_, T> EncodeLike<&'_ T> for T where
T: Encode, [src]
T: Encode,
impl<'_, T> EncodeLike<&'_ mut T> for T where
T: Encode, [src]
T: Encode,
impl<T> EncodeLike<Arc<T>> for T where
T: Encode, [src]
T: Encode,
impl<T> EncodeLike<Box<T>> for T where
T: Encode, [src]
T: Encode,
impl<'a, T> EncodeLike<Cow<'a, T>> for T where
T: Encode + ToOwned, [src]
T: Encode + ToOwned,
impl<T> EncodeLike<Rc<T>> for T where
T: Encode, [src]
T: Encode,
impl<T> From<T> for T[src][+]
impl<T> FromFFIValue for T where
T: PassBy, [src][+]
T: PassBy,
impl<S> FullCodec for S where
S: Decode + FullEncode, [src]
S: Decode + FullEncode,
impl<S> FullEncode for S where
S: Encode + EncodeLike<S>, [src]
S: Encode + EncodeLike<S>,
impl<T> InitializableFromZeroed for T where
T: Default, [src][+]
T: Default,
impl<T, U> Into<U> for T where
U: From<T>, [src][+]
U: From<T>,
impl<T> IntoFFIValue for T where
T: PassBy, [src][+]
T: PassBy,
impl<T, Outer> IsWrappedBy<Outer> for T where
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>, [src][+]
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T> KeyedVec for T where
T: Codec, [src][+]
T: Codec,
impl<T> MaybeDebug for T where
T: Debug, [src]
T: Debug,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe, [src]
T: RefUnwindSafe,
impl<T> RIType for T where
T: PassBy, [src]
T: PassBy,
type FFIType = <<T as PassBy>::PassBy as RIType>::FFIType
The ffi type that is used to represent Self.
impl<T> Same<T> for T[src]
type Output = T
Should always be Self
impl<T> ToHex for T where
T: AsRef<[u8]>, [src][+]
T: AsRef<[u8]>,
impl<T> ToOwned for T where
T: Clone, [src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src][+]
U: TryFrom<T>,
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>, [src][+]
T: UncheckedFrom<S>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>, [src][+]
V: MultiLane<T>,