File size: 2,187 Bytes
258fb37 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | /*
* Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
*
* This file is part of Open5GS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef OGS_CRYPT_H
#define OGS_CRYPT_H
#include "proto/ogs-proto.h"
#define OGS_CRYPT_INSIDE
#include "crypt/ogs-sha1.h"
#include "crypt/ogs-sha1-hmac.h"
#include "crypt/ogs-sha2.h"
#include "crypt/ogs-sha2-hmac.h"
#include "crypt/ogs-aes.h"
#include "crypt/ogs-aes-cmac.h"
#include "crypt/milenage.h"
#include "crypt/snow-3g.h"
#include "crypt/zuc.h"
#include "crypt/kasumi.h"
#include "crypt/ecc.h"
#include "crypt/ogs-kdf.h"
#include "crypt/ogs-base64.h"
#include "crypt/openssl/snow3g.h"
#undef OGS_CRYPT_INSIDE
#ifdef __cplusplus
extern "C" {
#endif
#define OGS_KEY_LEN 16
#define OGS_IVEC_LEN 16
#define OGS_AMF_LEN 2
#define OGS_RAND_LEN 16
#define OGS_AUTN_LEN 16
#define OGS_AUTS_LEN 14
#define OGS_MAX_RES_LEN 16
#define OGS_MAC_S_LEN 8
#define OGS_SQN_XOR_AK_LEN 6
#define OGS_AK_LEN 6
#define OGS_SQN_LEN 6
#define OGS_MAX_SQN 0xffffffffffff
#define OGS_HASH_MME_LEN 8
#define OGS_ECCKEY_LEN 32
#define OGS_MACTAG_LEN 8
#define OGS_KEYSTRLEN(x) ((x*2)+1)
int curve25519_donna(
uint8_t *mypublic, const uint8_t *secret, const uint8_t *basepoint);
#ifdef __cplusplus
}
#endif
#endif /* OGS_CRYPT_H */
|