mirror of
https://github.com/minio/minio.git
synced 2025-11-07 12:52:58 -05:00
Implement md5c function, slower than Golang's implementation
keeping it in repo to make further improvements and also rename
minio-hash ---> crypto
This commit is contained in:
1
cmd/crypto/.gitignore
vendored
Normal file
1
cmd/crypto/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
crypto
|
||||
@@ -24,8 +24,8 @@ import (
|
||||
|
||||
func main() {
|
||||
app := cli.NewApp()
|
||||
app.Name = "minio-hash"
|
||||
app.Usage = ""
|
||||
app.Name = "crypto"
|
||||
app.Usage = "calculate cryptosum on a given stream"
|
||||
app.Commands = Options
|
||||
app.Run(os.Args)
|
||||
}
|
||||
33
cmd/crypto/crypto.md
Normal file
33
cmd/crypto/crypto.md
Normal file
@@ -0,0 +1,33 @@
|
||||
% MINIO(1) Minio Manual
|
||||
% Minio community
|
||||
% December 2014
|
||||
# NAME
|
||||
crypto - calculate crypto sum on a stream
|
||||
|
||||
# SYNOPSIS
|
||||
|
||||
# DESCRIPTION
|
||||
```sh
|
||||
NAME:
|
||||
crypto - calculate cryptosum on a given stream
|
||||
|
||||
USAGE:
|
||||
crypto [global options] command [command options] [arguments...]
|
||||
|
||||
VERSION:
|
||||
0.0.0
|
||||
|
||||
COMMANDS:
|
||||
md5sum
|
||||
sha1sum
|
||||
sha256sum
|
||||
sha512sum
|
||||
help, h Shows a list of commands or help for one command
|
||||
|
||||
GLOBAL OPTIONS:
|
||||
--help, -h show help
|
||||
--version, -v print the version
|
||||
```
|
||||
# EXAMPLES
|
||||
|
||||
# AUTHORS
|
||||
@@ -1,13 +0,0 @@
|
||||
% MINIO(1) Minio Manual
|
||||
% Minio community
|
||||
% December 2014
|
||||
# NAME
|
||||
md5sum -
|
||||
|
||||
# SYNOPSIS
|
||||
|
||||
# DESCRIPTION
|
||||
|
||||
# EXAMPLES
|
||||
|
||||
# AUTHORS
|
||||
Reference in New Issue
Block a user