use crate::{
command::{self, Command},
object,
response::Response,
wrap,
};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug)]
pub(crate) struct ImportWrappedCommand {
pub wrap_key_id: object::Id,
pub nonce: wrap::Nonce,
pub ciphertext: Vec<u8>,
}
impl Command for ImportWrappedCommand {
type ResponseType = ImportWrappedResponse;
}
#[derive(Serialize, Deserialize, Debug)]
pub(crate) struct ImportWrappedResponse {
pub object_type: object::Type,
pub object_id: object::Id,
}
impl Response for ImportWrappedResponse {
const COMMAND_CODE: command::Code = command::Code::ImportWrapped;
}