Skip to content

Latest commit

 

History

History
54 lines (29 loc) · 664 Bytes

README.rst

File metadata and controls

54 lines (29 loc) · 664 Bytes

crypto

Crypto & Hashing algorithms for Ergonomica.

Installation (with epm)

Just run

epm install crypto

Installation (without epm)

Download crypto.py from this repository and place it in ~/.ergo/packages.

Usage

Hashing Files

To hash files using SHA-256, run

sha256 file1 file2,...

To hash files using MD5, run

md5 file1 file2,...

Hashing Strings

To hash strings using SHA256, run

sha256 string1 string2,...

To hash strings using MD5, run

md5 string1 string2,...