mirror of
https://github.com/nushell/nushell.git
synced 2025-07-01 07:00:37 +02:00
Port hash
, hash md5
and hash sha256
commands (#464)
`hash` by itself is only printing the help message. The other two are simply using the same generic implementation.
This commit is contained in:
8
crates/nu-command/src/hash/mod.rs
Normal file
8
crates/nu-command/src/hash/mod.rs
Normal file
@ -0,0 +1,8 @@
|
||||
mod command;
|
||||
mod generic_digest;
|
||||
mod md5;
|
||||
mod sha256;
|
||||
|
||||
pub use self::command::Hash;
|
||||
pub use self::md5::HashMd5;
|
||||
pub use self::sha256::HashSha256;
|
Reference in New Issue
Block a user