Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1 | /* |
2 | * 32-bit CRC for FCS calculation | ||||
3 | * Copyright (c) 2010, Jouni Malinen <j@w1.fi> | ||||
4 | * | ||||
5 | * This software may be distributed under the terms of the BSD license. | ||||
6 | * See README for more details. | ||||
7 | */ | ||||
8 | |||||
9 | #ifndef CRC32_H | ||||
10 | #define CRC32_H | ||||
11 | |||||
Sunil Ravi | 89eba10 | 2022-09-13 21:04:37 -0700 | [diff] [blame] | 12 | u32 ieee80211_crc32(const u8 *frame, size_t frame_len); |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 13 | |
14 | #endif /* CRC32_H */ |