Struct ring::signature::UnparsedPublicKey
source · pub struct UnparsedPublicKey<B: AsRef<[u8]>> { /* private fields */ }
Expand description
An unparsed, possibly malformed, public key for signature verification.
Implementations§
source§impl<B: AsRef<[u8]>> UnparsedPublicKey<B>
impl<B: AsRef<[u8]>> UnparsedPublicKey<B>
sourcepub fn new(algorithm: &'static dyn VerificationAlgorithm, bytes: B) -> Self
pub fn new(algorithm: &'static dyn VerificationAlgorithm, bytes: B) -> Self
Construct a new UnparsedPublicKey
.
No validation of bytes
is done until verify()
is called.
sourcepub fn verify(
&self,
message: &[u8],
signature: &[u8],
) -> Result<(), Unspecified>
pub fn verify( &self, message: &[u8], signature: &[u8], ) -> Result<(), Unspecified>
Parses the public key and verifies signature
is a valid signature of
message
using it.
See the crate::signature module-level documentation for examples.
Trait Implementations§
source§impl<B> Clone for UnparsedPublicKey<B>
impl<B> Clone for UnparsedPublicKey<B>
impl<B> Copy for UnparsedPublicKey<B>
Auto Trait Implementations§
impl<B> Freeze for UnparsedPublicKey<B>where
B: Freeze,
impl<B> !RefUnwindSafe for UnparsedPublicKey<B>
impl<B> Send for UnparsedPublicKey<B>where
B: Send,
impl<B> Sync for UnparsedPublicKey<B>where
B: Sync,
impl<B> Unpin for UnparsedPublicKey<B>where
B: Unpin,
impl<B> !UnwindSafe for UnparsedPublicKey<B>
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
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)