cregit-Linux how code gets into the kernel

Release 4.8 net/mac80211/aes_ccm.c

Directory: net/mac80211
/*
 * Copyright 2003-2004, Instant802 Networks, Inc.
 * Copyright 2005-2006, Devicescape Software, Inc.
 *
 * Rewrite: Copyright (C) 2013 Linaro Ltd <ard.biesheuvel@linaro.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/err.h>
#include <crypto/aead.h>

#include <net/mac80211.h>
#include "key.h"
#include "aes_ccm.h"


void ieee80211_aes_ccm_encrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad, u8 *data, size_t data_len, u8 *mic, size_t mic_len) { struct scatterlist sg[3]; char aead_req_data[sizeof(struct aead_request) + crypto_aead_reqsize(tfm)] __aligned(__alignof__(struct aead_request)); struct aead_request *aead_req = (void *) aead_req_data; memset(aead_req, 0, sizeof(aead_req_data)); sg_init_table(sg, 3); sg_set_buf(&sg[0], &aad[2], be16_to_cpup((__be16 *)aad)); sg_set_buf(&sg[1], data, data_len); sg_set_buf(&sg[2], mic, mic_len); aead_request_set_tfm(aead_req, tfm); aead_request_set_crypt(aead_req, sg, sg, data_len, b_0); aead_request_set_ad(aead_req, sg[0].length); crypto_aead_encrypt(aead_req); }

Contributors

PersonTokensPropCommitsCommitProp
ard biesheuvelard biesheuvel6737.43%112.50%
jiri bencjiri benc4122.91%112.50%
herbert xuherbert xu2815.64%112.50%
jan-simon mollerjan-simon moller2715.08%112.50%
harvey harrisonharvey harrison95.03%225.00%
jouni malinenjouni malinen42.23%112.50%
ilpo jarvinenilpo jarvinen31.68%112.50%
Total179100.00%8100.00%


int ieee80211_aes_ccm_decrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad, u8 *data, size_t data_len, u8 *mic, size_t mic_len) { struct scatterlist sg[3]; char aead_req_data[sizeof(struct aead_request) + crypto_aead_reqsize(tfm)] __aligned(__alignof__(struct aead_request)); struct aead_request *aead_req = (void *) aead_req_data; if (data_len == 0) return -EINVAL; memset(aead_req, 0, sizeof(aead_req_data)); sg_init_table(sg, 3); sg_set_buf(&sg[0], &aad[2], be16_to_cpup((__be16 *)aad)); sg_set_buf(&sg[1], data, data_len); sg_set_buf(&sg[2], mic, mic_len); aead_request_set_tfm(aead_req, tfm); aead_request_set_crypt(aead_req, sg, sg, data_len + mic_len, b_0); aead_request_set_ad(aead_req, sg[0].length); return crypto_aead_decrypt(aead_req); }

Contributors

PersonTokensPropCommitsCommitProp
ard biesheuvelard biesheuvel7639.58%114.29%
jiri bencjiri benc4322.40%114.29%
herbert xuherbert xu2814.58%114.29%
jan-simon mollerjan-simon moller2714.06%114.29%
ronald wahlronald wahl105.21%114.29%
jouni malinenjouni malinen52.60%114.29%
ilpo jarvinenilpo jarvinen31.56%114.29%
Total192100.00%7100.00%


struct crypto_aead *ieee80211_aes_key_setup_encrypt(const u8 key[], size_t key_len, size_t mic_len) { struct crypto_aead *tfm; int err; tfm = crypto_alloc_aead("ccm(aes)", 0, CRYPTO_ALG_ASYNC); if (IS_ERR(tfm)) return tfm; err = crypto_aead_setkey(tfm, key, key_len); if (err) goto free_aead; err = crypto_aead_setauthsize(tfm, mic_len); if (err) goto free_aead; return tfm; free_aead: crypto_free_aead(tfm); return ERR_PTR(err); }

Contributors

PersonTokensPropCommitsCommitProp
jiri bencjiri benc4142.27%125.00%
ard biesheuvelard biesheuvel4041.24%125.00%
dan carpenterdan carpenter88.25%125.00%
jouni malinenjouni malinen88.25%125.00%
Total97100.00%4100.00%


void ieee80211_aes_key_free(struct crypto_aead *tfm) { crypto_free_aead(tfm); }

Contributors

PersonTokensPropCommitsCommitProp
jiri bencjiri benc1386.67%150.00%
ard biesheuvelard biesheuvel213.33%150.00%
Total15100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
ard biesheuvelard biesheuvel18636.83%17.69%
jiri bencjiri benc15230.10%17.69%
herbert xuherbert xu5711.29%215.38%
jan-simon mollerjan-simon moller5410.69%17.69%
jouni malinenjouni malinen173.37%17.69%
ronald wahlronald wahl101.98%17.69%
harvey harrisonharvey harrison91.78%215.38%
ilpo jarvinenilpo jarvinen91.78%17.69%
dan carpenterdan carpenter81.58%17.69%
johannes bergjohannes berg30.59%215.38%
Total505100.00%13100.00%
Directory: net/mac80211
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.