blob: f942bc02bc2abb0a21582227ac2cbba735d3c296 [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 *
Harald Weltee08da972017-11-13 01:00:26 +090010 * SPDX-License-Identifier: GPL-2.0+
11 *
Kevin Redonbe355cd2013-11-02 18:11:01 +010012 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
Kevin Redonbe355cd2013-11-02 18:11:01 +010022 */
23
24#include <osmocom/crypt/auth.h>
25#include <osmocom/gsm/comp128v23.h>
26
Harald Welte96e2a002017-06-12 21:44:18 +020027/*! \addtogroup auth
28 * @{
29 */
30
Kevin Redonbe355cd2013-11-02 18:11:01 +010031static int c128v2_gen_vec(struct osmo_auth_vector *vec,
Harald Welte08450c92023-05-30 10:55:37 +020032 struct osmo_sub_auth_data2 *aud,
Kevin Redonbe355cd2013-11-02 18:11:01 +010033 const uint8_t *_rand)
34{
Harald Welte5248c472023-05-30 11:09:17 +020035 OSMO_ASSERT(aud->algo == OSMO_AUTH_ALG_COMP128v2);
Max4f0abc02013-12-02 11:30:32 +010036 comp128v2(aud->u.gsm.ki, _rand, vec->sres, vec->kc);
Kevin Redonbe355cd2013-11-02 18:11:01 +010037 vec->auth_types = OSMO_AUTH_TYPE_GSM;
38
39 return 0;
40}
41
42static struct osmo_auth_impl c128v2_alg = {
43 .algo = OSMO_AUTH_ALG_COMP128v2,
44 .name = "COMP128v2 (libosmogsm built-in)",
45 .priority = 1000,
46 .gen_vec = &c128v2_gen_vec,
47};
48
49static int c128v3_gen_vec(struct osmo_auth_vector *vec,
Harald Welte08450c92023-05-30 10:55:37 +020050 struct osmo_sub_auth_data2 *aud,
Kevin Redonbe355cd2013-11-02 18:11:01 +010051 const uint8_t *_rand)
52{
Harald Welte5248c472023-05-30 11:09:17 +020053 OSMO_ASSERT(aud->algo == OSMO_AUTH_ALG_COMP128v3);
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/*! @} */