Perché l'hash di openssl è diverso da quelli che ottengo in python?L'hash SHA1 differisce tra openssl e hashlib/pycrypto
$ echo "Lorem ipsum" | openssl dgst -sha1 -hex
(stdin)= d0c05753484098c61e86f402a2875e68992b5ca3
$ python
>>> from hashlib import sha1
>>> sha("Lorem ipsum").hexdigest()
'94912be8b3fb47d4161ea50e5948c6296af6ca05'
>>> from Crypto.Hash import SHA
>>> SHA.new("Lorem ipsum").hexdigest()
'94912be8b3fb47d4161ea50e5948c6296af6ca05'
Le stringhe non sono equivalenti? mi manca qualcosa di ovvio?
Modifica: Grazie per individuarlo. Era in grado di convogliare un messaggio salvato da un file che ha anche lo stesso fastidioso problema di nuova riga.
$ cat message | openssl dgst -sha1 -hex
'keep whacking your head mate, it wont be the same'
$ echo -n $(cat message) | openssl dgst -sha1 -hex
'ok, you got me, for now'
Comune, sì, ovvio, non proprio. – Piskvor