Struct ring::signature::UnparsedPublicKey
source · [−]Expand description
An unparsed, possibly malformed, public key for signature verification.
Implementations
sourceimpl<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.
Trait Implementations
impl<B: Copy> Copy for UnparsedPublicKey<B> where
B: AsRef<[u8]>,
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more