#[repr(C)]pub struct Params {
pub curve: usize,
pub message: *const u8,
pub x: *const u8,
pub y: *const u8,
pub r: *const u8,
pub s: *const u8,
}Expand description
Parameters of ecdsa_verify
Fields§
§curve: usizeThe curve.
message: *const u8The integer message in SEC1 encoding.
x: *const u8The x-coordinate in SEC1 encoding.
y: *const u8The y-coordinate in SEC1 encoding.
r: *const u8The r signature component in SEC1 encoding.
s: *const u8The s signature component in SEC1 encoding.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Params
impl RefUnwindSafe for Params
impl !Send for Params
impl !Sync for Params
impl Unpin for Params
impl UnwindSafe for Params
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
Mutably borrows from an owned value. Read more