diff options
author | Sam Leffler <sam@FreeBSD.org> | 2005-06-05 20:52:14 +0000 |
---|---|---|
committer | Sam Leffler <sam@FreeBSD.org> | 2005-06-05 20:52:14 +0000 |
commit | f1fb6907abb279cfabe81d79e2ffac54c4e7aa98 (patch) | |
tree | 98be326632e2ea3857ee0d9f831c91ea0823bb0d /contrib/wpa_supplicant/rc4.h |
Notes
Diffstat (limited to 'contrib/wpa_supplicant/rc4.h')
-rw-r--r-- | contrib/wpa_supplicant/rc4.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/wpa_supplicant/rc4.h b/contrib/wpa_supplicant/rc4.h new file mode 100644 index 0000000000000..0e77b7e470d03 --- /dev/null +++ b/contrib/wpa_supplicant/rc4.h @@ -0,0 +1,7 @@ +#ifndef RC4_H +#define RC4_H + +void rc4_skip(u8 *key, size_t keylen, size_t skip, u8 *data, size_t data_len); +void rc4(u8 *buf, size_t len, u8 *key, size_t key_len); + +#endif /* RC4_H */ |