aboutsummaryrefslogtreecommitdiffstats
path: root/epan/crypt/dot11decrypt_int.h
AgeCommit message (Collapse)AuthorFilesLines
2019-07-26HTTPS (almost) everywhere.Guy Harris1-1/+1
Change all wireshark.org URLs to use https. Fix some broken links while we're at it. Change-Id: I161bf8eeca43b8027605acea666032da86f5ea1c Reviewed-on: https://code.wireshark.org/review/34089 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2018-06-12Add some length checks, remove a DISSECTOR_ASSERT().Guy Harris1-1/+6
Do more checks to make sure we don't run past the end of the data we're handed, and don't do a DISSECTOR_ASSERT(), as there may well be packets that don't have enough data to pass the assertion - that was causing some errors to show up in the 2.6 buildbot when doing 802.11 decryption tests. Those errors should instead be reported as "sorry, we can't do decryption" errors by the decryption code. (XXX - the 802.11 *dissector* should probably be extracting the relevant fields and doing the relevant checks, and hand the data to the decryption code, so that we don't duplicate 802.11 frame parsing with code that might not do as much necessary work as the 802.11 dissector.) Tweak some comments while we're at it. Change-Id: I1d230e07cec2fca8c23f265b5875a0bf83f79432 Reviewed-on: https://code.wireshark.org/review/28240 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2018-03-09spdx: convert files with multiple licenses.Dario Lombardo1-27/+1
Change-Id: Iac29428b5a6d26896e559f06acf202f03fa8ec90 Reviewed-on: https://code.wireshark.org/review/26366 Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-02-24Rename airpdcap to dot11decrypt.Gerald Combs1-0/+172
Our 802.11 decryption code isn't tied to any specific product. Change the file and API names to dot11decrypt. Change-Id: I14fd951be3ae9b656a4e1959067fc0bdcc681ee2 Reviewed-on: https://code.wireshark.org/review/26058 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>