2 * Copyright 2003-2004, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
5 * Rewrite: Copyright (C) 2013 Linaro Ltd <ard.biesheuvel@linaro.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/types.h>
14 #include <linux/err.h>
15 #include <crypto/aead.h>
17 #include <net/mac80211.h>
21 int ieee80211_aes_ccm_encrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad,
22 u8 *data, size_t data_len, u8 *mic,
25 struct scatterlist sg[3];
26 struct aead_request *aead_req;
27 int reqsize = sizeof(*aead_req) + crypto_aead_reqsize(tfm);
30 aead_req = kzalloc(reqsize + CCM_AAD_LEN, GFP_ATOMIC);
34 __aad = (u8 *)aead_req + reqsize;
35 memcpy(__aad, aad, CCM_AAD_LEN);
38 sg_set_buf(&sg[0], &__aad[2], be16_to_cpup((__be16 *)__aad));
39 sg_set_buf(&sg[1], data, data_len);
40 sg_set_buf(&sg[2], mic, mic_len);
42 aead_request_set_tfm(aead_req, tfm);
43 aead_request_set_crypt(aead_req, sg, sg, data_len, b_0);
44 aead_request_set_ad(aead_req, sg[0].length);
46 crypto_aead_encrypt(aead_req);
52 int ieee80211_aes_ccm_decrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad,
53 u8 *data, size_t data_len, u8 *mic,
56 struct scatterlist sg[3];
57 struct aead_request *aead_req;
58 int reqsize = sizeof(*aead_req) + crypto_aead_reqsize(tfm);
65 aead_req = kzalloc(reqsize + CCM_AAD_LEN, GFP_ATOMIC);
69 __aad = (u8 *)aead_req + reqsize;
70 memcpy(__aad, aad, CCM_AAD_LEN);
73 sg_set_buf(&sg[0], &__aad[2], be16_to_cpup((__be16 *)__aad));
74 sg_set_buf(&sg[1], data, data_len);
75 sg_set_buf(&sg[2], mic, mic_len);
77 aead_request_set_tfm(aead_req, tfm);
78 aead_request_set_crypt(aead_req, sg, sg, data_len + mic_len, b_0);
79 aead_request_set_ad(aead_req, sg[0].length);
81 err = crypto_aead_decrypt(aead_req);
87 struct crypto_aead *ieee80211_aes_key_setup_encrypt(const u8 key[],
91 struct crypto_aead *tfm;
94 tfm = crypto_alloc_aead("ccm(aes)", 0, CRYPTO_ALG_ASYNC);
98 err = crypto_aead_setkey(tfm, key, key_len);
101 err = crypto_aead_setauthsize(tfm, mic_len);
108 crypto_free_aead(tfm);
112 void ieee80211_aes_key_free(struct crypto_aead *tfm)
114 crypto_free_aead(tfm);