1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
use std::os::raw::c_int;
use crate::{device::CryptDevice, err::LibcryptErr};
pub struct CryptVolumeKey<'a> {
reference: &'a mut CryptDevice,
}
impl<'a> CryptVolumeKey<'a> {
pub(crate) fn new(reference: &'a mut CryptDevice) -> Self {
CryptVolumeKey { reference }
}
pub fn get(
&mut self,
keyslot: c_int,
volume_key: &mut [u8],
passphrase: &str,
) -> Result<(c_int, crate::size_t), LibcryptErr> {
let mut volume_key_size_t = volume_key.len();
let passphrase_cstring = to_cstring!(passphrase)?;
errno_int_success!(unsafe {
libcryptsetup_rs_sys::crypt_volume_key_get(
self.reference.as_ptr(),
keyslot,
to_mut_byte_ptr!(volume_key),
&mut volume_key_size_t as *mut _,
passphrase_cstring.as_ptr(),
passphrase.len(),
)
})
.map(|i| (i, volume_key_size_t))
}
pub fn verify(&mut self, volume_key: &[u8]) -> Result<(), LibcryptErr> {
errno!(unsafe {
libcryptsetup_rs_sys::crypt_volume_key_verify(
self.reference.as_ptr(),
to_byte_ptr!(volume_key),
volume_key.len(),
)
})
}
}