File: utran_cipher.h

package info (click to toggle)
libosmocore 1.11.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,796 kB
  • sloc: ansic: 125,901; python: 2,193; makefile: 1,769; sh: 529; exp: 63; xml: 19
file content (19 lines) | stat: -rw-r--r-- 336 bytes parent folder | download | duplicates (2)
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
};