From d7a2127a4c5b2d52c94d5c27a5744a055ddc14f7 Mon Sep 17 00:00:00 2001 From: "Longpeng(Mike)" Date: Wed, 7 Dec 2016 09:11:50 +0800 Subject: [PATCH] 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 --- backends/cryptodev-builtin.c | 4 ---- 1 file changed, 4 deletions(-) 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);