mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.3 KiB
C
72 lines
2.3 KiB
C
/*---------------------------------------------------------
|
|
* snow_3g.h
|
|
*
|
|
* Adapted from ETSI/SAGE specifications:
|
|
* "Specification of the 3GPP Confidentiality and
|
|
* Integrity Algorithms UEA2 & UIA2.
|
|
* Document 1: UEA2 and UIA2 Specification"
|
|
* "Specification of the 3GPP Confidentiality
|
|
* and Integrity Algorithms UEA2 & UIA2.
|
|
* Document 2: SNOW 3G Specification"
|
|
*---------------------------------------------------------*/
|
|
#ifndef SRSLTE_SNOW_3G_H
|
|
#define SRSLTE_SNOW_3G_H
|
|
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
typedef unsigned char u8;
|
|
typedef unsigned int u32;
|
|
typedef unsigned long long u64;
|
|
|
|
/* Initialization.
|
|
* Input k[4]: Four 32-bit words making up 128-bit key.
|
|
* Input IV[4]: Four 32-bit words making 128-bit initialization variable.
|
|
* Output: All the LFSRs and FSM are initialized for key generation.
|
|
* See Section 4.1.
|
|
*/
|
|
|
|
void snow3g_initialize(u32 k[4], u32 IV[4]);
|
|
|
|
/* Generation of Keystream.
|
|
* input n: number of 32-bit words of keystream.
|
|
* input z: space for the generated keystream, assumes
|
|
* memory is allocated already.
|
|
* output: generated keystream which is filled in z
|
|
* See section 4.2.
|
|
*/
|
|
|
|
void snow3g_generate_keystream(u32 n, u32* z);
|
|
|
|
/* f8.
|
|
* Input key: 128 bit Confidentiality Key.
|
|
* Input count:32-bit Count, Frame dependent input.
|
|
* Input bearer: 5-bit Bearer identity (in the LSB side).
|
|
* Input dir:1 bit, direction of transmission.
|
|
* Input data: length number of bits, input bit stream.
|
|
* Input length: 32 bit Length, i.e., the number of bits to be encrypted or
|
|
* decrypted.
|
|
* Output data: Output bit stream. Assumes data is suitably memory
|
|
* allocated.
|
|
* Encrypts/decrypts blocks of data between 1 and 2^32 bits in length as
|
|
* defined in Section 3.
|
|
*/
|
|
|
|
void snow3g_f8(u8* key, u32 count, u32 bearer, u32 dir, u8* data, u32 length);
|
|
|
|
/* f9.
|
|
* Input key: 128 bit Integrity Key.
|
|
* Input count:32-bit Count, Frame dependent input.
|
|
* Input fresh: 32-bit Random number.
|
|
* Input dir:1 bit, direction of transmission (in the LSB).
|
|
* Input data: length number of bits, input bit stream.
|
|
* Input length: 64 bit Length, i.e., the number of bits to be MAC'd.
|
|
* Output : 32 bit block used as MAC
|
|
* Generates 32-bit MAC using UIA2 algorithm as defined in Section 4.
|
|
*/
|
|
|
|
u8* snow3g_f9(u8* key, u32 count, u32 fresh, u32 dir, u8* data, u64 length);
|
|
|
|
#endif // SRSLTE_SNOW_3G_H
|