mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 05:10:10 +00:00
31 lines
929 B
C
31 lines
929 B
C
/*
|
|
* eps_nas_ciphering_algorithm.h
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifndef _OpenAPI_eps_nas_ciphering_algorithm_H_
|
|
#define _OpenAPI_eps_nas_ciphering_algorithm_H_
|
|
|
|
#include <string.h>
|
|
#include "../external/cJSON.h"
|
|
#include "../include/list.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum { OpenAPI_eps_nas_ciphering_algorithm_NULL = 0, OpenAPI_eps_nas_ciphering_algorithm_EEA0, OpenAPI_eps_nas_ciphering_algorithm_EEA1, OpenAPI_eps_nas_ciphering_algorithm_EEA2, OpenAPI_eps_nas_ciphering_algorithm_EEA3 } OpenAPI_eps_nas_ciphering_algorithm_e;
|
|
|
|
char* OpenAPI_eps_nas_ciphering_algorithm_ToString(OpenAPI_eps_nas_ciphering_algorithm_e eps_nas_ciphering_algorithm);
|
|
|
|
OpenAPI_eps_nas_ciphering_algorithm_e OpenAPI_eps_nas_ciphering_algorithm_FromString(char* eps_nas_ciphering_algorithm);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _OpenAPI_eps_nas_ciphering_algorithm_H_ */
|
|
|