open5gs/lib/crypt/ogs-aes.h

73 lines
2.4 KiB
C

/*
* Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
/*
* Copyright (C) 2019-2020 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/>.
*/
#if !defined(OGS_CRYPT_INSIDE) && !defined(OGS_CRYPT_COMPILATION)
#error "This header cannot be included directly."
#endif
#ifndef OGS_AES_H
#define OGS_AES_H
#ifdef __cplusplus
extern "C" {
#endif
#define OGS_AES_BLOCK_SIZE 16
#define OGS_AES_MAX_KEY_BITS 256
#define OGS_AES_KEYLENGTH(keybits) ((keybits)/8)
#define OGS_AES_RKLENGTH(keybits) ((keybits)/8+28)
#define OGS_AES_NROUNDS(keybits) ((keybits)/32+6)
int ogs_aes_setup_enc(uint32_t *rk, const uint8_t *key, int keybits);
int ogs_aes_setup_dec(uint32_t *rk, const uint8_t *key, int keybits);
void ogs_aes_encrypt(const uint32_t *rk, int nrounds,
const uint8_t plaintext[16], uint8_t ciphertext[16]);
void ogs_aes_decrypt(const uint32_t *rk, int nrounds,
const uint8_t ciphertext[16], uint8_t plaintext[16]);
int ogs_aes_cbc_encrypt(const uint8_t *key,
const uint32_t keybits, uint8_t *ivec,
const uint8_t *in, const uint32_t inlen,
uint8_t *out, uint32_t *outlen);
int ogs_aes_cbc_decrypt(const uint8_t *key,
const uint32_t keybits, uint8_t *ivec,
const uint8_t *in, const uint32_t inlen,
uint8_t *out, uint32_t *outlen);
int ogs_aes_ctr128_encrypt(const uint8_t *key,
uint8_t *ivec, const uint8_t *in, const uint32_t inlen,
uint8_t *out);
#ifdef __cplusplus
}
#endif
#endif /* OGS_AES_H */