blob: 71a19dc5fcc3293f1e85fa1909c40409486c4956 [file] [log] [blame]
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -08001/*
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 Ravi89eba102022-09-13 21:04:37 -070012u32 ieee80211_crc32(const u8 *frame, size_t frame_len);
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -080013
14#endif /* CRC32_H */