]> git.ipfire.org Git - thirdparty/qemu.git/blame - crypto/cipher.c
crypto: add support for the cast5-128 cipher algorithm
[thirdparty/qemu.git] / crypto / cipher.c
CommitLineData
ca38a4cc
DB
1/*
2 * QEMU Crypto cipher algorithms
3 *
4 * Copyright (c) 2015 Red Hat, Inc.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
42f7a448 21#include "qemu/osdep.h"
ca38a4cc
DB
22#include "crypto/cipher.h"
23
62893b67 24
d8c02bcc 25static size_t alg_key_len[QCRYPTO_CIPHER_ALG__MAX] = {
ca38a4cc
DB
26 [QCRYPTO_CIPHER_ALG_AES_128] = 16,
27 [QCRYPTO_CIPHER_ALG_AES_192] = 24,
28 [QCRYPTO_CIPHER_ALG_AES_256] = 32,
29 [QCRYPTO_CIPHER_ALG_DES_RFB] = 8,
084a85ee 30 [QCRYPTO_CIPHER_ALG_CAST5_128] = 16,
ca38a4cc
DB
31};
32
d8c02bcc 33static size_t alg_block_len[QCRYPTO_CIPHER_ALG__MAX] = {
dd2bf9eb
DB
34 [QCRYPTO_CIPHER_ALG_AES_128] = 16,
35 [QCRYPTO_CIPHER_ALG_AES_192] = 16,
36 [QCRYPTO_CIPHER_ALG_AES_256] = 16,
37 [QCRYPTO_CIPHER_ALG_DES_RFB] = 8,
084a85ee 38 [QCRYPTO_CIPHER_ALG_CAST5_128] = 8,
dd2bf9eb
DB
39};
40
d8c02bcc 41static bool mode_need_iv[QCRYPTO_CIPHER_MODE__MAX] = {
dd2bf9eb
DB
42 [QCRYPTO_CIPHER_MODE_ECB] = false,
43 [QCRYPTO_CIPHER_MODE_CBC] = true,
44};
45
46
47size_t qcrypto_cipher_get_block_len(QCryptoCipherAlgorithm alg)
48{
49 if (alg >= G_N_ELEMENTS(alg_key_len)) {
50 return 0;
51 }
52 return alg_block_len[alg];
53}
54
55
56size_t qcrypto_cipher_get_key_len(QCryptoCipherAlgorithm alg)
57{
58 if (alg >= G_N_ELEMENTS(alg_key_len)) {
59 return 0;
60 }
61 return alg_key_len[alg];
62}
63
64
65size_t qcrypto_cipher_get_iv_len(QCryptoCipherAlgorithm alg,
66 QCryptoCipherMode mode)
67{
68 if (alg >= G_N_ELEMENTS(alg_block_len)) {
69 return 0;
70 }
71 if (mode >= G_N_ELEMENTS(mode_need_iv)) {
72 return 0;
73 }
74
75 if (mode_need_iv[mode]) {
76 return alg_block_len[alg];
77 }
78 return 0;
79}
80
81
ca38a4cc
DB
82static bool
83qcrypto_cipher_validate_key_length(QCryptoCipherAlgorithm alg,
84 size_t nkey,
85 Error **errp)
86{
d8c02bcc 87 if ((unsigned)alg >= QCRYPTO_CIPHER_ALG__MAX) {
ca38a4cc
DB
88 error_setg(errp, "Cipher algorithm %d out of range",
89 alg);
90 return false;
91 }
92
93 if (alg_key_len[alg] != nkey) {
94 error_setg(errp, "Cipher key length %zu should be %zu",
50de6261 95 nkey, alg_key_len[alg]);
ca38a4cc
DB
96 return false;
97 }
98 return true;
99}
100
91bfcdb0 101#if defined(CONFIG_GCRYPT) || defined(CONFIG_NETTLE)
62893b67
DB
102static uint8_t *
103qcrypto_cipher_munge_des_rfb_key(const uint8_t *key,
104 size_t nkey)
105{
106 uint8_t *ret = g_new0(uint8_t, nkey);
107 size_t i;
108 for (i = 0; i < nkey; i++) {
109 uint8_t r = key[i];
110 r = (r & 0xf0) >> 4 | (r & 0x0f) << 4;
111 r = (r & 0xcc) >> 2 | (r & 0x33) << 2;
112 r = (r & 0xaa) >> 1 | (r & 0x55) << 1;
113 ret[i] = r;
114 }
115 return ret;
116}
91bfcdb0 117#endif /* CONFIG_GCRYPT || CONFIG_NETTLE */
62893b67 118
91bfcdb0 119#ifdef CONFIG_GCRYPT
62893b67 120#include "crypto/cipher-gcrypt.c"
91bfcdb0 121#elif defined CONFIG_NETTLE
ed754746 122#include "crypto/cipher-nettle.c"
62893b67 123#else
ca38a4cc 124#include "crypto/cipher-builtin.c"
62893b67 125#endif