c139683024
Move supplicant to idf and do following refactoring: 1. Make the folder structure consitent with supplicant upstream 2. Remove duplicated header files and minimize the public header files 3. Refactor for WiFi/supplicant interfaces
10 lines
No EOL
276 B
C
10 lines
No EOL
276 B
C
#ifndef WEPKEY_H
|
|
#define WEPKEY_H
|
|
|
|
#define WEPKEY_64_BYTES 5
|
|
#define WePKEY_128_BYTES 13
|
|
|
|
unsigned int wepkey_64(uint8_t *out, unsigned int size, const char *in, int n);
|
|
unsigned int wepkey_128(uint8_t *out, unsigned int size, const char *in, int n);
|
|
|
|
#endif /* WEPKEY_H */ |