<- Back
#security #certificates #ncat #tls #ssl #hashing #sha256 #sha512 #hmac

openssl

Hashing
sha256
echo -n "hello world" | openssl dgst -sha256
sha512
echo -n "hello world" | openssl dgst -sha512
HMAC
hmac
echo -n "hello world" | openssl dgst -sha512 -hmac "mykey"

See also the tls page for SSL/TLS.

See also the key derivation page for PBKDF2-HMAC-SHA-512.