blob: c37808f0f59684d4e2ec7d23a81607db325650d4 [file] [log] [blame]
Harald Welteec8b4502010-02-20 20:34:29 +01001/*
2 * COMP128 header
3 *
4 * See comp128.c for details
5 */
6
7#ifndef __COMP128_H__
8#define __COMP128_H__
9
10#include <stdint.h>
11
12/*
13 * Performs the COMP128 algorithm (used as A3/A8)
14 * ki : uint8_t [16]
15 * srand : uint8_t [16]
16 * sres : uint8_t [4]
17 * kc : uint8_t [8]
18 */
19void comp128(uint8_t *ki, uint8_t *srand, uint8_t *sres, uint8_t *kc);
20
21#endif /* __COMP128_H__ */
22