From: Longpeng(Mike) Date: Wed, 7 Dec 2016 01:11:50 +0000 (+0800) Subject: cryptodev: remove single-DES support in cryptodev X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d7a2127a4c5b2d52c94d5c27a5744a055ddc14f7;p=qemu.git cryptodev: remove single-DES support in cryptodev Single-DES is obsolete and it's broken/useless for decades, we should remove it in cryptodev, as suggested by Daniel. Guest who wants to use this obsolete cipher alg will use its built-in implementation instead. Signed-off-by: Longpeng(Mike) Reviewed-by: Daniel P. Berrange Signed-off-by: Gonglei --- diff --git a/backends/cryptodev-builtin.c b/backends/cryptodev-builtin.c index a4224f4b1e..5fb2836fde 100644 --- a/backends/cryptodev-builtin.c +++ b/backends/cryptodev-builtin.c @@ -205,10 +205,6 @@ static int cryptodev_builtin_create_cipher_session( return -1; } break; - case VIRTIO_CRYPTO_CIPHER_DES_ECB: - mode = QCRYPTO_CIPHER_MODE_ECB; - algo = QCRYPTO_CIPHER_ALG_DES_RFB; - break; default: error_setg(errp, "Unsupported cipher alg :%u", sess_info->cipher_alg);