srsLTE/lib/include/srslte/common/zuc.h

49 lines
1.0 KiB
C
Raw Normal View History

2019-09-09 11:06:52 -07:00
/*---------------------------------------------------------
zuc.h
Adapted from ETSI/SAGE specifications:
"Specification of the 3GPP Confidentiality
and Integrity Algorithms 128-EEA3 & 128-EIA3.
Document 2: ZUC Specification"
---------------------------------------------------------*/
2019-04-09 09:41:53 -07:00
#ifndef SRSLTE_ZUC_H
#define SRSLTE_ZUC_H
typedef unsigned char u8;
typedef unsigned int u32;
/* the state registers of LFSR */
typedef struct {
u32 LFSR_S0;
u32 LFSR_S1;
u32 LFSR_S2;
u32 LFSR_S3;
u32 LFSR_S4;
u32 LFSR_S5;
u32 LFSR_S6;
u32 LFSR_S7;
u32 LFSR_S8;
u32 LFSR_S9;
u32 LFSR_S10;
u32 LFSR_S11;
u32 LFSR_S12;
u32 LFSR_S13;
u32 LFSR_S14;
u32 LFSR_S15;
/* the registers of F */
u32 F_R1;
u32 F_R2;
/* the outputs of BitReorganization */
u32 BRC_X0;
u32 BRC_X1;
u32 BRC_X2;
u32 BRC_X3;
} zuc_state_t;
void zuc_initialize(zuc_state_t* state, const u8* k, u8* iv);
void zuc_generate_keystream(zuc_state_t* state, int key_stream_len, u32* p_keystream);
2019-04-09 09:41:53 -07:00
2019-09-09 11:06:52 -07:00
#endif // SRSLTE_ZUC_H