aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/crypt/utran_cipher.h
blob: 7dab3bc9db4408d15d7c843ca8f926783ea44083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*! \file utran_cipher.h */

#pragma once

/* 3GPP TS 25.413 § 9.2.1.11 */
enum osmo_utran_integrity_algo {
	OSMO_UTRAN_UIA1 = 0,
	OSMO_UTRAN_UIA2 = 1,
	_OSMO_UTRAN_UIA_NUM
};

/* 3GPP TS 25.413 § 9.2.1.12 */
enum osmo_utran_encryption_algo {
	OSMO_UTRAN_UEA0 = 0,
	OSMO_UTRAN_UEA1 = 1,
	OSMO_UTRAN_UEA2 = 2,
	_OSMO_UTRAN_UEA_NUM
};