4 * Copyright (c) 2003-2007, Jouni Malinen <j@w1.fi>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Alternatively, this software may be distributed under the terms of BSD
13 * See README and COPYING for more details.
23 * aes_128_cbc_encrypt - AES-128 CBC encryption
24 * @key: Encryption key
25 * @iv: Encryption IV for CBC mode (16 bytes)
26 * @data: Data to encrypt in-place
27 * @data_len: Length of data in bytes (must be divisible by 16)
28 * Returns: 0 on success, -1 on failure
30 int aes_128_cbc_encrypt(const u8
*key
, const u8
*iv
, u8
*data
, size_t data_len
)
33 u8 cbc
[AES_BLOCK_SIZE
];
37 ctx
= aes_encrypt_init(key
, 16);
40 os_memcpy(cbc
, iv
, AES_BLOCK_SIZE
);
42 blocks
= data_len
/ AES_BLOCK_SIZE
;
43 for (i
= 0; i
< blocks
; i
++) {
44 for (j
= 0; j
< AES_BLOCK_SIZE
; j
++)
46 aes_encrypt(ctx
, cbc
, cbc
);
47 os_memcpy(pos
, cbc
, AES_BLOCK_SIZE
);
48 pos
+= AES_BLOCK_SIZE
;
50 aes_encrypt_deinit(ctx
);
56 * aes_128_cbc_decrypt - AES-128 CBC decryption
57 * @key: Decryption key
58 * @iv: Decryption IV for CBC mode (16 bytes)
59 * @data: Data to decrypt in-place
60 * @data_len: Length of data in bytes (must be divisible by 16)
61 * Returns: 0 on success, -1 on failure
63 int aes_128_cbc_decrypt(const u8
*key
, const u8
*iv
, u8
*data
, size_t data_len
)
66 u8 cbc
[AES_BLOCK_SIZE
], tmp
[AES_BLOCK_SIZE
];
70 ctx
= aes_decrypt_init(key
, 16);
73 os_memcpy(cbc
, iv
, AES_BLOCK_SIZE
);
75 blocks
= data_len
/ AES_BLOCK_SIZE
;
76 for (i
= 0; i
< blocks
; i
++) {
77 os_memcpy(tmp
, pos
, AES_BLOCK_SIZE
);
78 aes_decrypt(ctx
, pos
, pos
);
79 for (j
= 0; j
< AES_BLOCK_SIZE
; j
++)
81 os_memcpy(cbc
, tmp
, AES_BLOCK_SIZE
);
82 pos
+= AES_BLOCK_SIZE
;
84 aes_decrypt_deinit(ctx
);