/* * Copyright 2003-2004, Instant802 Networks, Inc. * Copyright 2006, Devicescape Software, Inc. * * 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. */ #ifndef AES_CCM_H #define AES_CCM_H #include #define CCM_AAD_LEN 32 struct crypto_aead *ieee80211_aes_key_setup_encrypt(const u8 key[], size_t key_len, size_t mic_len); int 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); 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); void ieee80211_aes_key_free(struct crypto_aead *tfm); #endif /* AES_CCM_H */ 695146b82432d63d98775787'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/core
AgeCommit message (Expand)AuthorFilesLines
2017-02-06net: remove ndo_neigh_{construct, destroy} from stacked devicesIdo Schimmel1-44/+0
2017-02-05net: remove __napi_complete()Eric Dumazet1-21/+3
2017-02-03net: skb_needs_check() accepts CHECKSUM_NONE for txEric Dumazet1-3/+4
2017-02-03net: remove support for per driver ndo_busy_poll()Eric Dumazet2-16/+0
2017-02-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-nextDavid S. Miller1-1/+1
2017-02-02net: add LINUX_MIB_PFMEMALLOCDROP counterEric Dumazet1-2/+3
2017-02-02net: remove useless pfmemalloc settingEric Dumazet1-1/+0
2017-02-02skbuff: add and use skb_nfct helperFlorian Westphal1-1/+1