Tagged Questions
4
votes
3answers
1k views
“openssl dgst -sha1” producing an extraneous “(stdin)= ” prefix and trailing newline
If you run this command on your Unix
echo -n "foo" | openssl dgst -sha1
You will get this output:
(stdin)= 0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33
(followed by a newline).
How can I force ...