alloy_primitives

Struct PrimitiveSignature

Source
pub struct PrimitiveSignature { /* private fields */ }
Expand description

An Ethereum ECDSA signature.

Implementations§

Source§

impl PrimitiveSignature

Source

pub fn decode_rlp_vrs( buf: &mut &[u8], decode_parity: impl FnOnce(&mut &[u8]) -> Result<bool>, ) -> Result<Self, Error>

Available on crate feature rlp only.

Decode an RLP-encoded VRS signature. Accepts decode_parity closure which allows to customize parity decoding and possibly extract additional data from it (e.g chain_id for legacy signature).

Source§

impl PrimitiveSignature

Source

pub fn new(r: U256, s: U256, v: bool) -> Self

Instantiate a new signature from r, s, and v values.

Source

pub fn into_inner(self) -> Signature

👎Deprecated: use Signature::to_k256 instead
Available on crate feature k256 only.

Returns the inner ECDSA signature.

Source

pub fn to_k256(self) -> Result<Signature, Error>

Available on crate feature k256 only.

Returns the inner ECDSA signature.

Source

pub fn from_signature_and_parity(sig: Signature, v: bool) -> Self

Available on crate feature k256 only.

Instantiate from a signature and recovery id

Source

pub fn from_scalars_and_parity(r: B256, s: B256, parity: bool) -> Self

Creates a PrimitiveSignature from the serialized r and s scalar values, which comprise the ECDSA signature, alongside a v value, used to determine the recovery ID.

Source

pub fn normalize_s(&self) -> Option<Self>

Normalizes the signature into “low S” form as described in BIP 0062: Dealing with Malleability.

Source

pub const fn recid(&self) -> RecoveryId

Available on crate feature k256 only.

Returns the recovery ID.

Source

pub fn recover_address_from_msg<T: AsRef<[u8]>>( &self, msg: T, ) -> Result<Address, SignatureError>

Available on crate feature k256 only.

Recovers an Address from this signature and the given message by first prefixing and hashing the message according to EIP-191.

Source

pub fn recover_address_from_prehash( &self, prehash: &B256, ) -> Result<Address, SignatureError>

Available on crate feature k256 only.

Recovers an Address from this signature and the given prehashed message.

Source

pub fn recover_from_msg<T: AsRef<[u8]>>( &self, msg: T, ) -> Result<VerifyingKey, SignatureError>

Available on crate feature k256 only.

Recovers a VerifyingKey from this signature and the given message by first prefixing and hashing the message according to EIP-191.

Source

pub fn recover_from_prehash( &self, prehash: &B256, ) -> Result<VerifyingKey, SignatureError>

Available on crate feature k256 only.

Recovers a VerifyingKey from this signature and the given prehashed message.

Source

pub fn from_bytes_and_parity(bytes: &[u8], parity: bool) -> Self

Parses a signature from a byte slice, with a v value

§Panics

If the slice is not at least 64 bytes long.

Source

pub const fn r(&self) -> U256

Returns the r component of this signature.

Source

pub const fn s(&self) -> U256

Returns the s component of this signature.

Source

pub const fn v(&self) -> bool

Returns the recovery ID as a bool.

Source

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

Returns the byte-array representation of this signature.

The first 32 bytes are the r value, the second 32 bytes the s value and the final byte is the v value in ‘Electrum’ notation.

Source

pub const fn with_parity(self, v: bool) -> Self

Sets the recovery ID by normalizing a v value.

Source

pub fn rlp_rs_len(&self) -> usize

Available on crate feature rlp only.

Length of RLP RS field encoding

Source

pub fn write_rlp_rs(&self, out: &mut dyn BufMut)

Available on crate feature rlp only.

Write R and S to an RLP buffer in progress.

Source

pub fn write_rlp_vrs(&self, out: &mut dyn BufMut, v: impl Encodable)

Available on crate feature rlp only.

Write the VRS to the output.

Trait Implementations§

Source§

impl<'a> Arbitrary<'a> for PrimitiveSignature

Available on crate feature arbitrary only.
Source§

fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>

Generate an arbitrary value of Self from the given unstructured data. Read more
Source§

fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
Source§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

impl Arbitrary for PrimitiveSignature

Available on crate feature arbitrary only.
Source§

type Parameters = ()

The type of parameters that arbitrary_with accepts for configuration of the generated Strategy. Parameters must implement Default.
Source§

type Strategy = Map<<(Uint<256, 4>, Uint<256, 4>, bool) as Arbitrary>::Strategy, fn(_: (Uint<256, 4>, Uint<256, 4>, bool)) -> PrimitiveSignature>

The type of Strategy used to generate values of type Self.
Source§

fn arbitrary_with((): Self::Parameters) -> Self::Strategy

Generates a Strategy for producing arbitrary values of type the implementing type (Self). The strategy is passed the arguments given in args. Read more
Source§

fn arbitrary() -> Self::Strategy

Generates a Strategy for producing arbitrary values of type the implementing type (Self). Read more
Source§

impl Clone for PrimitiveSignature

Source§

fn clone(&self) -> PrimitiveSignature

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

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

Performs copy-assignment from source. Read more
Source§

impl Debug for PrimitiveSignature

Source§

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

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

impl<'de> Deserialize<'de> for PrimitiveSignature

Available on crate feature serde only.
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<&PrimitiveSignature> for [u8; 65]

Source§

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

Converts to this type from the input type.
Source§

impl From<&PrimitiveSignature> for Vec<u8>

Source§

fn from(value: &PrimitiveSignature) -> Self

Converts to this type from the input type.
Source§

impl From<(Signature<Secp256k1>, RecoveryId)> for PrimitiveSignature

Available on crate feature k256 only.
Source§

fn from(value: (Signature, RecoveryId)) -> Self

Converts to this type from the input type.
Source§

impl From<PrimitiveSignature> for [u8; 65]

Source§

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

Converts to this type from the input type.
Source§

impl From<PrimitiveSignature> for Vec<u8>

Source§

fn from(value: PrimitiveSignature) -> Self

Converts to this type from the input type.
Source§

impl FromStr for PrimitiveSignature

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 Hash for PrimitiveSignature

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for PrimitiveSignature

Source§

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

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

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 PrimitiveSignature

Available on crate feature serde only.
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 PrimitiveSignature

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 TryFrom<PrimitiveSignature> for Signature

Available on crate feature k256 only.
Source§

type Error = Error

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

fn try_from(value: PrimitiveSignature) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl Copy for PrimitiveSignature

Source§

impl Eq for PrimitiveSignature

Source§

impl StructuralPartialEq for PrimitiveSignature

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, dst: *mut T)

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

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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> Same for T

Source§

type Output = T

Should always be Self
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>,