pub struct CertificateChain { /* private fields */ }
Expand description
Wrapper structure for BCertChain
format.
Implementations§
Source§impl CertificateChain
impl CertificateChain
Sourcepub fn from_bytes(bytes: &[u8]) -> Result<Self, Error>
pub fn from_bytes(bytes: &[u8]) -> Result<Self, Error>
Creates new CertificateChain
from bytes.
Sourcepub fn raw(&self) -> &[u8] ⓘ
pub fn raw(&self) -> &[u8] ⓘ
Creates raw bytes of CertificateChain
.
Sourcepub fn security_level(&self) -> Result<u32, Error>
pub fn security_level(&self) -> Result<u32, Error>
Returns security level (SL????) of the device.
Sourcepub fn verify_signatures(&self) -> Result<(), Error>
pub fn verify_signatures(&self) -> Result<(), Error>
Performs signature verification of all certificates.
Trait Implementations§
Source§impl Clone for CertificateChain
impl Clone for CertificateChain
Source§fn clone(&self) -> CertificateChain
fn clone(&self) -> CertificateChain
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 moreSource§impl Debug for CertificateChain
impl Debug for CertificateChain
Source§impl TryFrom<&[u8]> for CertificateChain
impl TryFrom<&[u8]> for CertificateChain
Auto Trait Implementations§
impl Freeze for CertificateChain
impl RefUnwindSafe for CertificateChain
impl Send for CertificateChain
impl Sync for CertificateChain
impl Unpin for CertificateChain
impl UnwindSafe for CertificateChain
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