Struct sgx_types::types::Rsa3072Key
source · [−]#[repr(C)]pub struct Rsa3072Key {
pub modulus: [u8; 384],
pub d: [u8; 384],
pub e: [u8; 4],
}
Fields
modulus: [u8; 384]
d: [u8; 384]
e: [u8; 4]
Trait Implementations
sourceimpl AsMut<[u8; 772]> for Rsa3072Key
impl AsMut<[u8; 772]> for Rsa3072Key
sourceimpl AsRef<[u8; 772]> for Rsa3072Key
impl AsRef<[u8; 772]> for Rsa3072Key
sourceimpl Clone for Rsa3072Key
impl Clone for Rsa3072Key
sourcefn clone(&self) -> Rsa3072Key
fn clone(&self) -> Rsa3072Key
Returns a copy of the value. Read more
1.0.0const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for Rsa3072Key
impl Debug for Rsa3072Key
sourceimpl Default for Rsa3072Key
impl Default for Rsa3072Key
sourcefn default() -> Rsa3072Key
fn default() -> Rsa3072Key
Returns the “default value” for a type. Read more
sourceimpl From<&[u8; 772]> for Rsa3072Key
impl From<&[u8; 772]> for Rsa3072Key
sourcefn from(array: &[u8; 772]) -> Rsa3072Key
fn from(array: &[u8; 772]) -> Rsa3072Key
Converts to this type from the input type.
sourceimpl From<[u8; 772]> for Rsa3072Key
impl From<[u8; 772]> for Rsa3072Key
sourcefn from(array: [u8; 772]) -> Rsa3072Key
fn from(array: [u8; 772]) -> Rsa3072Key
Converts to this type from the input type.
sourceimpl From<(Rsa3072PrivKey, Rsa3072PubKey)> for Rsa3072Key
impl From<(Rsa3072PrivKey, Rsa3072PubKey)> for Rsa3072Key
sourcefn from(key_pair: (Rsa3072PrivKey, Rsa3072PubKey)) -> Rsa3072Key
fn from(key_pair: (Rsa3072PrivKey, Rsa3072PubKey)) -> Rsa3072Key
Converts to this type from the input type.
sourceimpl From<Rsa3072Key> for (Rsa3072PrivKey, Rsa3072PubKey)
impl From<Rsa3072Key> for (Rsa3072PrivKey, Rsa3072PubKey)
sourcefn from(key_pair: Rsa3072Key) -> (Rsa3072PrivKey, Rsa3072PubKey)
fn from(key_pair: Rsa3072Key) -> (Rsa3072PrivKey, Rsa3072PubKey)
Converts to this type from the input type.
sourceimpl PartialEq<Rsa3072Key> for Rsa3072Key
impl PartialEq<Rsa3072Key> for Rsa3072Key
sourcefn eq(&self, other: &Rsa3072Key) -> bool
fn eq(&self, other: &Rsa3072Key) -> bool
sourceimpl TryFrom<&[u8]> for Rsa3072Key
impl TryFrom<&[u8]> for Rsa3072Key
type Error = TryFromSliceError
type Error = TryFromSliceError
The type returned in the event of a conversion error.
sourcefn try_from(slice: &[u8]) -> Result<Rsa3072Key, Self::Error>
fn try_from(slice: &[u8]) -> Result<Rsa3072Key, Self::Error>
Performs the conversion.
impl BytewiseEquality for Rsa3072Key
impl ContiguousMemory for Rsa3072Key
impl Copy for Rsa3072Key
impl Eq for Rsa3072Key
impl StructuralEq for Rsa3072Key
impl StructuralPartialEq for Rsa3072Key
Auto Trait Implementations
impl RefUnwindSafe for Rsa3072Key
impl Send for Rsa3072Key
impl Sync for Rsa3072Key
impl Unpin for Rsa3072Key
impl UnwindSafe for Rsa3072Key
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more