Struct nca_keyset_t

Source
#[repr(C)]
pub struct nca_keyset_t {
Show 40 fields pub secure_boot_key: [c_uchar; 16], pub tsec_key: [c_uchar; 16], pub keyblob_keys: [[c_uchar; 16]; 32], pub keyblob_mac_keys: [[c_uchar; 16]; 32], pub encrypted_keyblobs: [[c_uchar; 176]; 32], pub keyblobs: [[c_uchar; 144]; 32], pub keyblob_key_sources: [[c_uchar; 16]; 32], pub keyblob_mac_key_source: [c_uchar; 16], pub tsec_root_kek: [c_uchar; 16], pub package1_mac_kek: [c_uchar; 16], pub package1_kek: [c_uchar; 16], pub tsec_auth_signatures: [[c_uchar; 16]; 32], pub tsec_root_keys: [[c_uchar; 16]; 32], pub master_kek_sources: [[c_uchar; 16]; 32], pub master_keks: [[c_uchar; 16]; 32], pub master_key_source: [c_uchar; 16], pub master_keys: [[c_uchar; 16]; 32], pub package1_mac_keys: [[c_uchar; 16]; 32], pub package1_keys: [[c_uchar; 16]; 32], pub package2_keys: [[c_uchar; 16]; 32], pub package2_key_source: [c_uchar; 16], pub aes_kek_generation_source: [c_uchar; 16], pub aes_key_generation_source: [c_uchar; 16], pub key_area_key_application_source: [c_uchar; 16], pub key_area_key_ocean_source: [c_uchar; 16], pub key_area_key_system_source: [c_uchar; 16], pub titlekek_source: [c_uchar; 16], pub header_kek_source: [c_uchar; 16], pub sd_card_kek_source: [c_uchar; 16], pub sd_card_key_sources: [[c_uchar; 32]; 2], pub save_mac_kek_source: [c_uchar; 16], pub save_mac_key_source: [c_uchar; 16], pub header_key_source: [c_uchar; 32], pub header_key: [c_uchar; 32], pub titlekeks: [[c_uchar; 16]; 32], pub key_area_keys: [[[c_uchar; 16]; 3]; 32], pub sd_card_keys: [[c_uchar; 32]; 2], pub nca_hdr_fixed_key_modulus: [c_uchar; 256], pub acid_fixed_key_modulus: [c_uchar; 256], pub package2_fixed_key_modulus: [c_uchar; 256],
}

Fields§

§secure_boot_key: [c_uchar; 16]§tsec_key: [c_uchar; 16]§keyblob_keys: [[c_uchar; 16]; 32]§keyblob_mac_keys: [[c_uchar; 16]; 32]§encrypted_keyblobs: [[c_uchar; 176]; 32]§keyblobs: [[c_uchar; 144]; 32]§keyblob_key_sources: [[c_uchar; 16]; 32]§keyblob_mac_key_source: [c_uchar; 16]§tsec_root_kek: [c_uchar; 16]§package1_mac_kek: [c_uchar; 16]§package1_kek: [c_uchar; 16]§tsec_auth_signatures: [[c_uchar; 16]; 32]§tsec_root_keys: [[c_uchar; 16]; 32]§master_kek_sources: [[c_uchar; 16]; 32]§master_keks: [[c_uchar; 16]; 32]§master_key_source: [c_uchar; 16]§master_keys: [[c_uchar; 16]; 32]§package1_mac_keys: [[c_uchar; 16]; 32]§package1_keys: [[c_uchar; 16]; 32]§package2_keys: [[c_uchar; 16]; 32]§package2_key_source: [c_uchar; 16]§aes_kek_generation_source: [c_uchar; 16]§aes_key_generation_source: [c_uchar; 16]§key_area_key_application_source: [c_uchar; 16]§key_area_key_ocean_source: [c_uchar; 16]§key_area_key_system_source: [c_uchar; 16]§titlekek_source: [c_uchar; 16]§header_kek_source: [c_uchar; 16]§sd_card_kek_source: [c_uchar; 16]§sd_card_key_sources: [[c_uchar; 32]; 2]§save_mac_kek_source: [c_uchar; 16]§save_mac_key_source: [c_uchar; 16]§header_key_source: [c_uchar; 32]§header_key: [c_uchar; 32]§titlekeks: [[c_uchar; 16]; 32]§key_area_keys: [[[c_uchar; 16]; 3]; 32]§sd_card_keys: [[c_uchar; 32]; 2]§nca_hdr_fixed_key_modulus: [c_uchar; 256]§acid_fixed_key_modulus: [c_uchar; 256]§package2_fixed_key_modulus: [c_uchar; 256]

Trait Implementations§

Source§

impl Clone for nca_keyset_t

Source§

fn clone(&self) -> nca_keyset_t

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for nca_keyset_t

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Copy for nca_keyset_t

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.