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