Struct libcryptsetup_rs::CryptLuks2Token
source · [−]pub struct CryptLuks2Token<'a> { /* private fields */ }
Expand description
Handle for LUKS2 token operations
Implementations
sourceimpl<'a> CryptLuks2Token<'a>
impl<'a> CryptLuks2Token<'a>
sourcepub fn json_get(&mut self, token: c_uint) -> Result<Value, LibcryptErr>
pub fn json_get(&mut self, token: c_uint) -> Result<Value, LibcryptErr>
Get contents of a token in JSON format
sourcepub fn json_set(&mut self, input: TokenInput<'_>) -> Result<c_uint, LibcryptErr>
pub fn json_set(&mut self, input: TokenInput<'_>) -> Result<c_uint, LibcryptErr>
Set contents of a token in JSON format
sourcepub fn status(&mut self, token: c_uint) -> Result<CryptTokenInfo, LibcryptErr>
pub fn status(&mut self, token: c_uint) -> Result<CryptTokenInfo, LibcryptErr>
Get the token info for a specific token
sourcepub fn luks2_keyring_set(
&mut self,
token: Option<c_uint>,
key_description: &str
) -> Result<c_uint, LibcryptErr>
pub fn luks2_keyring_set(
&mut self,
token: Option<c_uint>,
key_description: &str
) -> Result<c_uint, LibcryptErr>
Create new LUKS2 keyring token
sourcepub fn luks2_keyring_get(
&mut self,
token: c_uint
) -> Result<String, LibcryptErr>
pub fn luks2_keyring_get(
&mut self,
token: c_uint
) -> Result<String, LibcryptErr>
Get LUKS2 keyring token description
sourcepub fn assign_keyslot(
&mut self,
token: c_uint,
keyslot: Option<c_uint>
) -> Result<(), LibcryptErr>
pub fn assign_keyslot(
&mut self,
token: c_uint,
keyslot: Option<c_uint>
) -> Result<(), LibcryptErr>
Assign token to keyslot
None
for keyslot assigns all keyslots to the token
sourcepub fn unassign_keyslot(
&mut self,
token: c_uint,
keyslot: Option<c_uint>
) -> Result<(), LibcryptErr>
pub fn unassign_keyslot(
&mut self,
token: c_uint,
keyslot: Option<c_uint>
) -> Result<(), LibcryptErr>
Unassign token from keyslot
None
for keyslot unassigns the token from all active keyslots
sourcepub fn is_assigned(
&mut self,
token: c_uint,
keyslot: c_uint
) -> Result<Bool, LibcryptErr>
pub fn is_assigned(
&mut self,
token: c_uint,
keyslot: c_uint
) -> Result<Bool, LibcryptErr>
Check if token is assigned
sourcepub fn register(
name: &'static str,
open: crypt_token_open_func,
buffer_free: crypt_token_buffer_free_func,
validate: crypt_token_validate_func,
dump: crypt_token_dump_func
) -> Result<(), LibcryptErr>
pub fn register(
name: &'static str,
open: crypt_token_open_func,
buffer_free: crypt_token_buffer_free_func,
validate: crypt_token_validate_func,
dump: crypt_token_dump_func
) -> Result<(), LibcryptErr>
Register token handler
sourcepub fn activate_by_token<T>(
&mut self,
name: Option<&str>,
token: Option<c_uint>,
usrdata: Option<&mut T>,
flags: CryptActivateFlags
) -> Result<c_uint, LibcryptErr>
pub fn activate_by_token<T>(
&mut self,
name: Option<&str>,
token: Option<c_uint>,
usrdata: Option<&mut T>,
flags: CryptActivateFlags
) -> Result<c_uint, LibcryptErr>
Activate device or check key using a token
Auto Trait Implementations
impl<'a> RefUnwindSafe for CryptLuks2Token<'a>
impl<'a> !Send for CryptLuks2Token<'a>
impl<'a> !Sync for CryptLuks2Token<'a>
impl<'a> Unpin for CryptLuks2Token<'a>
impl<'a> !UnwindSafe for CryptLuks2Token<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more