use std::path::Path;
use crate::{device::CryptDevice, err::LibcryptErr, format::EncryptionFormat};
pub struct CryptBackup<'a> {
reference: &'a mut CryptDevice,
}
impl<'a> CryptBackup<'a> {
pub(crate) fn new(reference: &'a mut CryptDevice) -> Self {
CryptBackup { reference }
}
pub fn header_backup(
&mut self,
requested_type: EncryptionFormat,
backup_file: &Path,
) -> Result<(), LibcryptErr> {
let backup_file_cstring = path_to_cstring!(backup_file)?;
errno!(unsafe {
libcryptsetup_rs_sys::crypt_header_backup(
self.reference.as_ptr(),
requested_type.as_ptr(),
backup_file_cstring.as_ptr(),
)
})
}
pub fn header_restore(
&mut self,
requested_type: EncryptionFormat,
backup_file: &Path,
) -> Result<(), LibcryptErr> {
let backup_file_cstring = path_to_cstring!(backup_file)?;
errno!(unsafe {
libcryptsetup_rs_sys::crypt_header_restore(
self.reference.as_ptr(),
requested_type.as_ptr(),
backup_file_cstring.as_ptr(),
)
})
}
}