Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msabramo/hmac_cli
Simple CLI for encrypting data with a private key, using HMAC
https://github.com/msabramo/hmac_cli
Last synced: about 1 month ago
JSON representation
Simple CLI for encrypting data with a private key, using HMAC
- Host: GitHub
- URL: https://github.com/msabramo/hmac_cli
- Owner: msabramo
- License: mit
- Created: 2015-04-02T19:49:10.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-02T19:50:37.000Z (almost 10 years ago)
- Last Synced: 2024-11-11T06:28:33.571Z (about 2 months ago)
- Language: Python
- Size: 129 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
hmac_cli
========Simple CLI for encrypting data with a private key, using HMAC
::
$ hmac --help
Usage: hmac [OPTIONS] INPUT_FILEEncrypt data in INPUT_FILE using HMAC
with provided secret cryptographic key
Options:
--key TEXT encryption key. Will prompt for if not
provided.
--algorithm [md5|sha1|sha224|sha256|sha384|sha512]
algorithm to use
--help Show this message and exit.$ hmac --key foo README.rst
515902266c1a02e60452d152855aa3b46ed5b006$ echo "Hello" | hmac --key foo -
aabbe57c6a0ba953cd907071004a1db16fe78891$ hmac -
Key: ******
Repeat for confirmation: ******
Here is some text
^D
c7ab7eed09fff2d0fcf258dfde8222d264013c4f