Struct ring::signature::UnparsedPublicKey
source · pub struct UnparsedPublicKey<B> { /* private fields */ }
Expand description
An unparsed, possibly malformed, public key for signature verification.
Implementations§
source§impl<B> UnparsedPublicKey<B>
impl<B> 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>where
B: AsRef<[u8]>,
pub fn verify( &self, message: &[u8], signature: &[u8] ) -> Result<(), Unspecified>where B: AsRef<[u8]>,
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> Clone for UnparsedPublicKey<B>
impl<B: Clone> Clone for UnparsedPublicKey<B>
source§fn clone(&self) -> UnparsedPublicKey<B>
fn clone(&self) -> UnparsedPublicKey<B>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more