I'm trying to use OpenSSL for authenticated encryption. Specifically, I'm trying to use AES-256-GCM
(or CCM).
However, when I run openssl list-cipher-commands
, I don't see it. The only AES ciphers shown are these:
aes-128-cbc
aes-128-ecb
aes-192-cbc
aes-192-ecb
aes-256-cbc
aes-256-ecb
I'm on openssl 1.0.1e, so it should be supported.