blob: 4d23769c7dbaed2c8b435d8a526b70eadea81fb6 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file auth_comp128v23.c
2 * registers COMP128 version 2 and 3 A3/A8 algorithms for the
3 * GSM/GPRS/3G authentication core infrastructure. */
4/*
5 * (C) 2010-2011 by Harald Welte <laforge@gnumonks.org>
Kevin Redonbe355cd2013-11-02 18:11:01 +01006 * (C) 2013 by Kévin Redon <kevredon@mail.tsaitgaist.info>
7 *
8 * All Rights Reserved
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 *
24 */
25
26#include <osmocom/crypt/auth.h>
27#include <osmocom/gsm/comp128v23.h>
28
Harald Welte96e2a002017-06-12 21:44:18 +020029/*! \addtogroup auth
30 * @{
31 */
32
Kevin Redonbe355cd2013-11-02 18:11:01 +010033static int c128v2_gen_vec(struct osmo_auth_vector *vec,
34 struct osmo_sub_auth_data *aud,
35 const uint8_t *_rand)
36{
Max4f0abc02013-12-02 11:30:32 +010037 comp128v2(aud->u.gsm.ki, _rand, vec->sres, vec->kc);
Kevin Redonbe355cd2013-11-02 18:11:01 +010038 vec->auth_types = OSMO_AUTH_TYPE_GSM;
39
40 return 0;
41}
42
43static struct osmo_auth_impl c128v2_alg = {
44 .algo = OSMO_AUTH_ALG_COMP128v2,
45 .name = "COMP128v2 (libosmogsm built-in)",
46 .priority = 1000,
47 .gen_vec = &c128v2_gen_vec,
48};
49
50static int c128v3_gen_vec(struct osmo_auth_vector *vec,
51 struct osmo_sub_auth_data *aud,
52 const uint8_t *_rand)
53{
Max4f0abc02013-12-02 11:30:32 +010054 comp128v3(aud->u.gsm.ki, _rand, vec->sres, vec->kc);
Kevin Redonbe355cd2013-11-02 18:11:01 +010055 vec->auth_types = OSMO_AUTH_TYPE_GSM;
56
57 return 0;
58}
59
60static struct osmo_auth_impl c128v3_alg = {
61 .algo = OSMO_AUTH_ALG_COMP128v3,
62 .name = "COMP128v3 (libosmogsm built-in)",
63 .priority = 1000,
64 .gen_vec = &c128v3_gen_vec,
65};
66
67static __attribute__((constructor)) void on_dso_load_c128(void)
68{
69 osmo_auth_register(&c128v2_alg);
70 osmo_auth_register(&c128v3_alg);
71}
Harald Welte96e2a002017-06-12 21:44:18 +020072
73/*! @} */