pub struct Signature { /* private fields */ }
Expand description
An Ethereum ECDSA signature.
Implementations§
source§impl Signature
impl Signature
sourcepub fn new(r: Uint<256, 4>, s: Uint<256, 4>, v: Parity) -> Signature
pub fn new(r: Uint<256, 4>, s: Uint<256, 4>, v: Parity) -> Signature
Instantiate a new signature from r
, s
, and v
values.
sourcepub fn into_inner(self) -> Signature<Secp256k1>
👎Deprecated: use Signature::to_k256
insteadAvailable on crate feature k256
only.
pub fn into_inner(self) -> Signature<Secp256k1>
Signature::to_k256
insteadk256
only.Returns the inner ECDSA signature.
sourcepub fn to_k256(self) -> Result<Signature<Secp256k1>, Error>
Available on crate feature k256
only.
pub fn to_k256(self) -> Result<Signature<Secp256k1>, Error>
k256
only.Returns the inner ECDSA signature.
sourcepub fn from_signature_and_parity<T, E>(
sig: Signature<Secp256k1>,
parity: T,
) -> Result<Signature, SignatureError>
Available on crate feature k256
only.
pub fn from_signature_and_parity<T, E>( sig: Signature<Secp256k1>, parity: T, ) -> Result<Signature, SignatureError>
k256
only.Instantiate from a signature and recovery id
sourcepub fn from_scalars_and_parity<T, E>(
r: FixedBytes<32>,
s: FixedBytes<32>,
parity: T,
) -> Result<Signature, SignatureError>
pub fn from_scalars_and_parity<T, E>( r: FixedBytes<32>, s: FixedBytes<32>, parity: T, ) -> Result<Signature, SignatureError>
Creates a Signature
from the serialized r
and s
scalar values, which comprise the
ECDSA signature, alongside a v
value, used to determine the recovery ID.
sourcepub fn normalize_s(&self) -> Option<Signature>
pub fn normalize_s(&self) -> Option<Signature>
Normalizes the signature into “low S” form as described in BIP 0062: Dealing with Malleability.
sourcepub const fn recid(&self) -> RecoveryId
Available on crate feature k256
only.
pub const fn recid(&self) -> RecoveryId
k256
only.Returns the recovery ID.
sourcepub fn recover_address_from_msg<T>(
&self,
msg: T,
) -> Result<Address, SignatureError>
Available on crate feature k256
only.
pub fn recover_address_from_msg<T>( &self, msg: T, ) -> Result<Address, SignatureError>
k256
only.sourcepub fn recover_address_from_prehash(
&self,
prehash: &FixedBytes<32>,
) -> Result<Address, SignatureError>
Available on crate feature k256
only.
pub fn recover_address_from_prehash( &self, prehash: &FixedBytes<32>, ) -> Result<Address, SignatureError>
k256
only.Recovers an Address
from this signature and the given prehashed message.
sourcepub fn recover_from_msg<T>(
&self,
msg: T,
) -> Result<VerifyingKey<Secp256k1>, SignatureError>
Available on crate feature k256
only.
pub fn recover_from_msg<T>( &self, msg: T, ) -> Result<VerifyingKey<Secp256k1>, SignatureError>
k256
only.Recovers a VerifyingKey
from this signature and the given message by first prefixing and
hashing the message according to EIP-191.
sourcepub fn recover_from_prehash(
&self,
prehash: &FixedBytes<32>,
) -> Result<VerifyingKey<Secp256k1>, SignatureError>
Available on crate feature k256
only.
pub fn recover_from_prehash( &self, prehash: &FixedBytes<32>, ) -> Result<VerifyingKey<Secp256k1>, SignatureError>
k256
only.Recovers a VerifyingKey
from this signature and the given prehashed message.
sourcepub fn from_bytes_and_parity<T, E>(
bytes: &[u8],
parity: T,
) -> Result<Signature, SignatureError>
pub fn from_bytes_and_parity<T, E>( bytes: &[u8], parity: T, ) -> Result<Signature, SignatureError>
Parses a signature from a byte slice, with a v value
§Panics
If the slice is not at least 64 bytes long.
sourcepub fn from_rs_and_parity<T, E>(
r: Uint<256, 4>,
s: Uint<256, 4>,
parity: T,
) -> Result<Signature, SignatureError>
pub fn from_rs_and_parity<T, E>( r: Uint<256, 4>, s: Uint<256, 4>, parity: T, ) -> Result<Signature, SignatureError>
Instantiate from v, r, s.
sourcepub fn with_chain_id(self, chain_id: u64) -> Signature
pub fn with_chain_id(self, chain_id: u64) -> Signature
Modifies the recovery ID by applying EIP-155 to a v
value.
sourcepub fn with_parity_bool(self) -> Signature
pub fn with_parity_bool(self) -> Signature
Modifies the recovery ID by dropping any [EIP-155] v value, converting to a simple parity bool.
sourcepub fn as_bytes(&self) -> [u8; 65]
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.
sourcepub fn with_parity<T>(self, parity: T) -> Signature
pub fn with_parity<T>(self, parity: T) -> Signature
Sets the recovery ID by normalizing a v
value.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Signature
Available on crate feature serde
only.
impl<'de> Deserialize<'de> for Signature
serde
only.source§fn deserialize<D>(
deserializer: D,
) -> Result<Signature, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<Signature, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
source§impl From<(Signature<Secp256k1>, RecoveryId)> for Signature
Available on crate feature k256
only.
impl From<(Signature<Secp256k1>, RecoveryId)> for Signature
k256
only.source§impl Serialize for Signature
Available on crate feature serde
only.
impl Serialize for Signature
serde
only.source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
source§impl<'a> TryFrom<&'a [u8]> for Signature
impl<'a> TryFrom<&'a [u8]> for Signature
source§fn try_from(
bytes: &'a [u8],
) -> Result<Signature, <Signature as TryFrom<&'a [u8]>>::Error>
fn try_from( bytes: &'a [u8], ) -> Result<Signature, <Signature as TryFrom<&'a [u8]>>::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
type Error = SignatureError
impl Copy for Signature
impl Eq for Signature
impl StructuralPartialEq for Signature
Auto Trait Implementations§
impl Freeze for Signature
impl RefUnwindSafe for Signature
impl Send for Signature
impl Sync for Signature
impl Unpin for Signature
impl UnwindSafe for Signature
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)