obnam 0.8.0

a backup program
Documentation
//! The `encrypt-chunk` and `decrypt-chunk` subcommands.

use crate::chunk::DataChunk;
use crate::chunkmeta::ChunkMeta;
use crate::cipher::CipherEngine;
use crate::config::ClientConfig;
use crate::error::ObnamError;
use std::path::PathBuf;
use structopt::StructOpt;

/// Encrypt a chunk.
#[derive(Debug, StructOpt)]
pub struct EncryptChunk {
    /// The name of the file containing the cleartext chunk.
    #[structopt(parse(from_os_str))]
    filename: PathBuf,

    /// Name of file where to write the encrypted chunk.
    #[structopt(parse(from_os_str))]
    output: PathBuf,

    /// Chunk metadata as JSON.
    #[structopt()]
    json: String,
}

impl EncryptChunk {
    /// Run the command.
    pub fn run(&self, config: &ClientConfig) -> Result<(), ObnamError> {
        let pass = config.passwords()?;
        let cipher = CipherEngine::new(&pass);

        let meta = ChunkMeta::from_json(&self.json)?;

        let cleartext = std::fs::read(&self.filename)?;
        let chunk = DataChunk::new(cleartext, meta);
        let encrypted = cipher.encrypt_chunk(&chunk)?;

        std::fs::write(&self.output, encrypted.ciphertext())?;

        Ok(())
    }
}

/// Decrypt a chunk.
#[derive(Debug, StructOpt)]
pub struct DecryptChunk {
    /// Name of file containing encrypted chunk.
    #[structopt(parse(from_os_str))]
    filename: PathBuf,

    /// Name of file where to write the cleartext chunk.
    #[structopt(parse(from_os_str))]
    output: PathBuf,

    /// Chunk metadata as JSON.
    #[structopt()]
    json: String,
}

impl DecryptChunk {
    /// Run the command.
    pub fn run(&self, config: &ClientConfig) -> Result<(), ObnamError> {
        let pass = config.passwords()?;
        let cipher = CipherEngine::new(&pass);

        let meta = ChunkMeta::from_json(&self.json)?;

        let encrypted = std::fs::read(&self.filename)?;
        let chunk = cipher.decrypt_chunk(&encrypted, &meta.to_json_vec())?;

        std::fs::write(&self.output, chunk.data())?;

        Ok(())
    }
}