ksign 0.4.0

OpenWRT's `usign` utility rewritten in Rust. The crate provides both the executable and the library.
Documentation
#![doc = include_str!("../README.md")]

mod bytes;
mod comment;
mod constants;
mod error;
mod fingerprint;
mod io;
mod signature;
mod signing_key;
mod verifying_key;

pub use self::bytes::*;
pub use self::comment::*;
pub(crate) use self::constants::*;
pub use self::error::*;
pub use self::io::*;
pub use self::signature::*;
pub use self::signing_key::*;
pub use self::verifying_key::*;

// Re-exports.
pub use ed25519_dalek as ed25519;