• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #ifndef EXT_CODE_CROP
12 u32 crc32(const u8 *frame, size_t frame_len);
13 #else
14 u32 crc32_wpa(const u8 *frame, size_t frame_len);
15 #endif
16 #endif /* CRC32_H */
17