/// Base64 encode or decode FILE (or standard input), to standard output. #[derive(Debug, Parser)] struct Opt { /// Decode the base64-encoded input (default: encode the input as base64). #[structopt(short = 'd', long = "decode")]
decode: bool,
/// The encoding alphabet: "standard" (default) or "url-safe". #[structopt(long = "alphabet")]
alphabet: Option<Alphabet>,
/// Omit padding characters while encoding, and reject them while decoding. #[structopt(short = 'p', long = "no-padding")]
no_padding: bool,
/// The file to encode or decode. #[structopt(name = "FILE", parse(from_os_str))]
file: Option<PathBuf>,
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.