blob: e4587d4f04925e5e06463e3510989ad9ce306559 [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 */
Harald Welte39a287d2011-12-06 21:52:09 +010019void comp128(const uint8_t *ki, const uint8_t *srand, uint8_t *sres, uint8_t *kc);
Harald Welteec8b4502010-02-20 20:34:29 +010020
21#endif /* __COMP128_H__ */
22