pub struct EdDSAParameters;
Expand description
Parameters for EdDSA
signing and verification.
Trait Implementations§
Source§impl Debug for EdDSAParameters
impl Debug for EdDSAParameters
Source§impl VerificationAlgorithm for EdDSAParameters
impl VerificationAlgorithm for EdDSAParameters
Source§fn verify(
&self,
public_key: Input<'_>,
msg: Input<'_>,
signature: Input<'_>,
) -> Result<(), Unspecified>
fn verify( &self, public_key: Input<'_>, msg: Input<'_>, signature: Input<'_>, ) -> Result<(), Unspecified>
👎Deprecated: please use
VerificationAlgorithm::verify_sig
insteadAvailable on crate feature
ring-sig-verify
only.Source§fn verify_sig(
&self,
public_key: &[u8],
msg: &[u8],
signature: &[u8],
) -> Result<(), Unspecified>
fn verify_sig( &self, public_key: &[u8], msg: &[u8], signature: &[u8], ) -> Result<(), Unspecified>
Auto Trait Implementations§
impl Freeze for EdDSAParameters
impl RefUnwindSafe for EdDSAParameters
impl Send for EdDSAParameters
impl Sync for EdDSAParameters
impl Unpin for EdDSAParameters
impl UnwindSafe for EdDSAParameters
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