05AB1E icon indicating copy to clipboard operation
05AB1E copied to clipboard

Suggestion: Hashing

Open okx-code opened this issue 7 years ago • 3 comments

It'd be nice to be able to createmd5 hashes, SHA-256 hashes, etc.

okx-code avatar Feb 24 '17 11:02 okx-code

Here's the problem:

05AB1E doesn't make use of any external libraries outside the normal Python package, so Python 3.4 is the only thing you need

You would have to include hashlib, passlib or similar and that would ruin the portability.

LoganDark avatar Aug 28 '17 05:08 LoganDark

hashlib is in the python standard library, so it is normally included in python installations. Alternatively a pure python implementation could be added, though that would be harder.

mkb2091 avatar Aug 28 '17 10:08 mkb2091

This is a pure python implementation of the SHA-2 generation hash functions: https://github.com/thomdixon/pysha2

fionafibration avatar Sep 21 '18 21:09 fionafibration