Path: blob/main/crypto/openssl/providers/implementations/ciphers/cipher_aes.c
48383 views
/*1* Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.2*3* Licensed under the Apache License 2.0 (the "License"). You may not use4* this file except in compliance with the License. You can obtain a copy5* in the file LICENSE in the source distribution or at6* https://www.openssl.org/source/license.html7*/89/*10* AES low level APIs are deprecated for public use, but still ok for internal11* use where we're using them to implement the higher level EVP interface, as is12* the case here.13*/14#include "internal/deprecated.h"1516/* Dispatch functions for AES cipher modes ecb, cbc, ofb, cfb, ctr */1718#include "cipher_aes.h"19#include "prov/implementations.h"20#include "prov/providercommon.h"2122static OSSL_FUNC_cipher_freectx_fn aes_freectx;23static OSSL_FUNC_cipher_dupctx_fn aes_dupctx;2425static void aes_freectx(void *vctx)26{27PROV_AES_CTX *ctx = (PROV_AES_CTX *)vctx;2829ossl_cipher_generic_reset_ctx((PROV_CIPHER_CTX *)vctx);30OPENSSL_clear_free(ctx, sizeof(*ctx));31}3233static void *aes_dupctx(void *ctx)34{35PROV_AES_CTX *in = (PROV_AES_CTX *)ctx;36PROV_AES_CTX *ret;3738if (!ossl_prov_is_running())39return NULL;4041ret = OPENSSL_malloc(sizeof(*ret));42if (ret == NULL)43return NULL;44in->base.hw->copyctx(&ret->base, &in->base);4546return ret;47}4849/* ossl_aes256ecb_functions */50IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 256, 128, 0, block)51/* ossl_aes192ecb_functions */52IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 192, 128, 0, block)53/* ossl_aes128ecb_functions */54IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 128, 128, 0, block)55/* ossl_aes256cbc_functions */56IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 256, 128, 128, block)57/* ossl_aes192cbc_functions */58IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 192, 128, 128, block)59/* ossl_aes128cbc_functions */60IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 128, 128, 128, block)61/* ossl_aes256ofb_functions */62IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 256, 8, 128, stream)63/* ossl_aes192ofb_functions */64IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 192, 8, 128, stream)65/* ossl_aes128ofb_functions */66IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 128, 8, 128, stream)67/* ossl_aes256cfb_functions */68IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 256, 8, 128, stream)69/* ossl_aes192cfb_functions */70IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 192, 8, 128, stream)71/* ossl_aes128cfb_functions */72IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 128, 8, 128, stream)73/* ossl_aes256cfb1_functions */74IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 256, 8, 128, stream)75/* ossl_aes192cfb1_functions */76IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 192, 8, 128, stream)77/* ossl_aes128cfb1_functions */78IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 128, 8, 128, stream)79/* ossl_aes256cfb8_functions */80IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 256, 8, 128, stream)81/* ossl_aes192cfb8_functions */82IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 192, 8, 128, stream)83/* ossl_aes128cfb8_functions */84IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 128, 8, 128, stream)85/* ossl_aes256ctr_functions */86IMPLEMENT_generic_cipher(aes, AES, ctr, CTR, 0, 256, 8, 128, stream)87/* ossl_aes192ctr_functions */88IMPLEMENT_generic_cipher(aes, AES, ctr, CTR, 0, 192, 8, 128, stream)89/* ossl_aes128ctr_functions */90IMPLEMENT_generic_cipher(aes, AES, ctr, CTR, 0, 128, 8, 128, stream)9192#include "cipher_aes_cts.inc"939495