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/crypto.h>
15 #include <linux/err.h>
16 #include <crypto/aes.h>
18 #include <net/mac80211.h>
22 void ieee80211_aes_ccm_encrypt(struct crypto_aead
*tfm
, u8
*b_0
, u8
*aad
,
23 u8
*data
, size_t data_len
, u8
*mic
)
25 struct scatterlist assoc
, pt
, ct
[2];
27 struct aead_request req
;
28 u8 priv
[crypto_aead_reqsize(tfm
)];
31 memset(&aead_req
, 0, sizeof(aead_req
));
33 sg_init_one(&pt
, data
, data_len
);
34 sg_init_one(&assoc
, &aad
[2], be16_to_cpup((__be16
*)aad
));
36 sg_set_buf(&ct
[0], data
, data_len
);
37 sg_set_buf(&ct
[1], mic
, IEEE80211_CCMP_MIC_LEN
);
39 aead_request_set_tfm(&aead_req
.req
, tfm
);
40 aead_request_set_assoc(&aead_req
.req
, &assoc
, assoc
.length
);
41 aead_request_set_crypt(&aead_req
.req
, &pt
, ct
, data_len
, b_0
);
43 crypto_aead_encrypt(&aead_req
.req
);
46 int ieee80211_aes_ccm_decrypt(struct crypto_aead
*tfm
, u8
*b_0
, u8
*aad
,
47 u8
*data
, size_t data_len
, u8
*mic
)
49 struct scatterlist assoc
, pt
, ct
[2];
51 struct aead_request req
;
52 u8 priv
[crypto_aead_reqsize(tfm
)];
55 memset(&aead_req
, 0, sizeof(aead_req
));
57 sg_init_one(&pt
, data
, data_len
);
58 sg_init_one(&assoc
, &aad
[2], be16_to_cpup((__be16
*)aad
));
60 sg_set_buf(&ct
[0], data
, data_len
);
61 sg_set_buf(&ct
[1], mic
, IEEE80211_CCMP_MIC_LEN
);
63 aead_request_set_tfm(&aead_req
.req
, tfm
);
64 aead_request_set_assoc(&aead_req
.req
, &assoc
, assoc
.length
);
65 aead_request_set_crypt(&aead_req
.req
, ct
, &pt
,
66 data_len
+ IEEE80211_CCMP_MIC_LEN
, b_0
);
68 return crypto_aead_decrypt(&aead_req
.req
);
71 struct crypto_aead
*ieee80211_aes_key_setup_encrypt(const u8 key
[])
73 struct crypto_aead
*tfm
;
76 tfm
= crypto_alloc_aead("ccm(aes)", 0, CRYPTO_ALG_ASYNC
);
80 err
= crypto_aead_setkey(tfm
, key
, WLAN_KEY_LEN_CCMP
);
82 err
= crypto_aead_setauthsize(tfm
, IEEE80211_CCMP_MIC_LEN
);
86 crypto_free_aead(tfm
);
90 void ieee80211_aes_key_free(struct crypto_aead
*tfm
)
92 crypto_free_aead(tfm
);