1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use std::{path::Path, process::Command};
pub struct KeyFromBytesCommand {
    command: Command,
}

impl KeyFromBytesCommand {
    pub fn new(command: Command) -> Self {
        Self { command }
    }

    pub fn input<P: AsRef<Path>>(mut self, input: P) -> Self {
        self.command.arg(input.as_ref());
        self
    }

    pub fn key_type<S: Into<String>>(mut self, key_type: S) -> Self {
        self.command.arg("--type").arg(key_type.into());
        self
    }

    pub fn build(self) -> Command {
        self.command
    }
}