libosmogsm 1.9.0.196-9975
Osmocom GSM library
milenage.h
Go to the documentation of this file.
1
4/*
5 * Copyright (c) 2006-2007 <j@w1.fi>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * Alternatively, this software may be distributed under the terms of BSD
12 * license.
13 *
14 * SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause
15 *
16 * See README and COPYING for more details.
17 */
18
19#pragma once
20
21void milenage_generate(const u8 *opc, const u8 *amf, const u8 *k,
22 const u8 *sqn, const u8 *_rand, u8 *autn, u8 *ik,
23 u8 *ck, u8 *res, size_t *res_len);
24int milenage_auts(const u8 *opc, const u8 *k, const u8 *_rand, const u8 *auts,
25 u8 *sqn);
26int gsm_milenage(const u8 *opc, const u8 *k, const u8 *_rand, u8 *sres,
27 u8 *kc);
28int milenage_check(const u8 *opc, const u8 *k, const u8 *sqn, const u8 *_rand,
29 const u8 *autn, u8 *ik, u8 *ck, u8 *res, size_t *res_len,
30 u8 *auts);
31int milenage_f1(const u8 *opc, const u8 *k, const u8 *_rand,
32 const u8 *sqn, const u8 *amf, u8 *mac_a, u8 *mac_s);
33int milenage_f2345(const u8 *opc, const u8 *k, const u8 *_rand,
34 u8 *res, u8 *ck, u8 *ik, u8 *ak, u8 *akstar);
35
36int milenage_opc_gen(u8 *opc, const u8 *k, const u8 *op);
uint8_t sres[4]
Definition: gsm_04_08.h:0
uint8_t u8
Definition: common.h:27
void milenage_generate(const u8 *opc, const u8 *amf, const u8 *k, const u8 *sqn, const u8 *_rand, u8 *autn, u8 *ik, u8 *ck, u8 *res, size_t *res_len)
milenage_generate - Generate AKA AUTN,IK,CK,RES @opc: OPc = 128-bit operator variant algorithm config...
Definition: milenage.c:182
int milenage_auts(const u8 *opc, const u8 *k, const u8 *_rand, const u8 *auts, u8 *sqn)
milenage_auts - Milenage AUTS validation @opc: OPc = 128-bit operator variant algorithm configuration...
Definition: milenage.c:217
int milenage_opc_gen(u8 *opc, const u8 *k, const u8 *op)
Definition: milenage.c:327
int gsm_milenage(const u8 *opc, const u8 *k, const u8 *_rand, u8 *sres, u8 *kc)
gsm_milenage - Generate GSM-Milenage (3GPP TS 55.205) authentication triplet @opc: OPc = 128-bit oper...
Definition: milenage.c:244
int milenage_check(const u8 *opc, const u8 *k, const u8 *sqn, const u8 *_rand, const u8 *autn, u8 *ik, u8 *ck, u8 *res, size_t *res_len, u8 *auts)
milenage_generate - Generate AKA AUTN,IK,CK,RES @opc: OPc = 128-bit operator variant algorithm config...
Definition: milenage.c:272
int milenage_f2345(const u8 *opc, const u8 *k, const u8 *_rand, u8 *res, u8 *ck, u8 *ik, u8 *ak, u8 *akstar)
milenage_f2345 - Milenage f2, f3, f4, f5, f5* algorithms @opc: OPc = 128-bit value derived from OP an...
Definition: milenage.c:97
int milenage_f1(const u8 *opc, const u8 *k, const u8 *_rand, const u8 *sqn, const u8 *amf, u8 *mac_a, u8 *mac_s)
milenage_f1 - Milenage f1 and f1* algorithms @opc: OPc = 128-bit value derived from OP and K @k: K = ...
Definition: milenage.c:45