An open API service indexing awesome lists of open source software.

https://github.com/mebjas/hasher

CLI tool to compute hashes for stdin
https://github.com/mebjas/hasher

Last synced: about 1 month ago
JSON representation

CLI tool to compute hashes for stdin

Awesome Lists containing this project

README

        

hasher
==========
CLI tool that computes different types of hashes (encode | decode) for input strings.

```
hasher -h : for help
hasher -a : to calculate all type of listed hashes
hasher -md5 : to calculate md5 digest
hasher -md4 : to calculate md4 digest
hasher -md2 : to calculate md2 digest
hasher -b64 : to calculate both base64 encoded & decoded string
hasher -b64E : to calculate base64 encoded string
hasher -b64D : to calculate base64 decoded string
hasher -sha1 : to calculate sha1 of the string
hasher -sha256 : to calculate sah256 of the string
hasher -sha512 : to calculate sha512 of the string
Example: hasher -md5 hector
```