xref: /aosp_15_r20/external/wpa_supplicant_8/src/utils/crc32.h (revision 03f9172ca588f91df233974f4258bab95191f931)
1 /*
2  * 32-bit CRC for FCS calculation
3  * Copyright (c) 2010, Jouni Malinen <[email protected]>
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 
12 u32 ieee80211_crc32(const u8 *frame, size_t frame_len);
13 
14 #endif /* CRC32_H */
15