Commit a3b94c9c authored by Rich Salz's avatar Rich Salz
Browse files

GH1546: Fix old names in cryptodev code.



Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1584)
(cherry picked from commit a8a8a917)
parent 8afb9742
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -856,10 +856,10 @@ cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
        *cipher = cryptodev_aes_ctr();
        break;
    case NID_aes_192_ctr:
        *cipher = cryptodev_aes_ctr_192();
        *cipher = cryptodev_aes_192_ctr();
        break;
    case NID_aes_256_ctr:
        *cipher = cryptodev_aes_ctr_256();
        *cipher = cryptodev_aes_256_ctr();
        break;
# endif
    default: