Struct Signature

Source
pub struct Signature {
    pub r: U256,
    pub s: U256,
    pub v: u64,
}
Expand description

An ECDSA signature with a recovery identifier.

The recovery identifier may be normalized, in Electrum notation or have EIP155 chain replay protection applied.

Fields§

§r: U256

R value

§s: U256

S value

§v: u64

V value for the recovery identifier

Implementations§

Source§

impl Signature

Source

pub fn new_normalized(r: U256, s: U256, v: u64) -> Self

Create a signature with normalized recovery identifier.

Source

pub fn new_electrum(r: U256, s: U256, v: u64) -> Self

Create a signature with electrum recovery identifier.

Source

pub fn new_eip155(r: U256, s: U256, v: u64) -> Self

Create a signature with EIP155 chain replay protection.

Source

pub fn is_normalized(&self) -> bool

Is the recovery identifier for this signature in the normalized form (0 or 1).

Source

pub fn is_electrum(&self) -> bool

Is the recovery identifier for this signature in the electrum form (27 or 28).

Source

pub fn is_eip155(&self) -> bool

Is the recovery identifier for this signature in the EIP155 form.

Source

pub fn normalize(self) -> Self

Converts this signature into normalized form from an Electrum signature.

Panics if this signature is not in Electrum format.

Source

pub fn normalize_eip155(self, chain_id: u64) -> Self

Converts this signature into normalized form from an EIP155 signature.

Panics if the signature could not be safely normalized for example if a chain_id was supplied that would cause the existing v value to become negative.

Source

pub fn into_electrum(self) -> Self

Converts this signature into Electrum form.

Panics if this signature is not in it’s normalized form.

Source

pub fn into_eip155(self, chain_id: u64) -> Self

Converts this signature applying EIP155 chain replay protection.

Panics if this signature is not in it’s normalized form.

Source

pub fn to_bytes(&self) -> [u8; 65]

Get the bytes for the r, s and v values.

Panics if this signature is not normalized.

Trait Implementations§

Source§

impl Clone for Signature

Source§

fn clone(&self) -> Signature

Returns a duplicate of the value. Read more
1.0.0 · Source§

const fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Signature

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Signature

Source§

fn default() -> Signature

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Signature

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<[u8; 65]> for Signature

Source§

fn from(value: [u8; 65]) -> Self

Converts to this type from the input type.
Source§

impl FromStr for Signature

Source§

type Err = SignatureError

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl PartialEq for Signature

Source§

fn eq(&self, other: &Signature) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

const fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for Signature

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<'a> TryFrom<&'a [u8]> for Signature

Source§

fn try_from(bytes: &'a [u8]) -> Result<Self, Self::Error>

Parses a raw signature which is expected to be 65 bytes long where the first 32 bytes is the r value, the second 32 bytes the s value and the final byte is the v value in ‘Electrum’ notation.

Source§

type Error = SignatureError

The type returned in the event of a conversion error.
Source§

impl Copy for Signature

Source§

impl Eq for Signature

Source§

impl StructuralPartialEq for Signature

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,