#[repr(C)]pub struct Params {
pub curve: usize,
pub public: *const u8,
pub digest: *const u8,
pub r: *const u8,
pub s: *const u8,
}Expand description
Parameters of verify
Fields§
§curve: usizeThe curve.
public: *const u8The public key.
digest: *const u8The pre-hashed message.
r: *const u8The first part of the signature.
s: *const u8The second part of the signature.
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