TianoCore EDK2 master
Loading...
Searching...
No Matches
CryptAes.c File Reference
#include "InternalCryptLib.h"
#include <openssl/aes.h>

Go to the source code of this file.

Functions

UINTN EFIAPI AesGetContextSize (VOID)
 
BOOLEAN EFIAPI AesInit (OUT VOID *AesContext, IN CONST UINT8 *Key, IN UINTN KeyLength)
 
BOOLEAN EFIAPI AesCbcEncrypt (IN VOID *AesContext, IN CONST UINT8 *Input, IN UINTN InputSize, IN CONST UINT8 *Ivec, OUT UINT8 *Output)
 
BOOLEAN EFIAPI AesCbcDecrypt (IN VOID *AesContext, IN CONST UINT8 *Input, IN UINTN InputSize, IN CONST UINT8 *Ivec, OUT UINT8 *Output)
 

Detailed Description

AES Wrapper Implementation over OpenSSL.

Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent

Definition in file CryptAes.c.

Function Documentation

◆ AesCbcDecrypt()

BOOLEAN EFIAPI AesCbcDecrypt ( IN VOID *  AesContext,
IN CONST UINT8 *  Input,
IN UINTN  InputSize,
IN CONST UINT8 *  Ivec,
OUT UINT8 *  Output 
)

Performs AES decryption on a data buffer of the specified size in CBC mode.

This function performs AES decryption on data buffer pointed by Input, of specified size of InputSize, in CBC mode. InputSize must be multiple of block size (16 bytes). This function does not perform padding. Caller must perform padding, if necessary, to ensure valid input data size. Initialization vector should be one block size (16 bytes). AesContext should be already correctly initialized by AesInit(). Behavior with invalid AES context is undefined.

If AesContext is NULL, then return FALSE. If Input is NULL, then return FALSE. If InputSize is not multiple of block size (16 bytes), then return FALSE. If Ivec is NULL, then return FALSE. If Output is NULL, then return FALSE.

Parameters
[in]AesContextPointer to the AES context.
[in]InputPointer to the buffer containing the data to be encrypted.
[in]InputSizeSize of the Input buffer in bytes.
[in]IvecPointer to initialization vector.
[out]OutputPointer to a buffer that receives the AES encryption output.
Return values
TRUEAES decryption succeeded.
FALSEAES decryption failed.

Definition at line 174 of file CryptAes.c.

◆ AesCbcEncrypt()

BOOLEAN EFIAPI AesCbcEncrypt ( IN VOID *  AesContext,
IN CONST UINT8 *  Input,
IN UINTN  InputSize,
IN CONST UINT8 *  Ivec,
OUT UINT8 *  Output 
)

Performs AES encryption on a data buffer of the specified size in CBC mode.

This function performs AES encryption on data buffer pointed by Input, of specified size of InputSize, in CBC mode. InputSize must be multiple of block size (16 bytes). This function does not perform padding. Caller must perform padding, if necessary, to ensure valid input data size. Initialization vector should be one block size (16 bytes). AesContext should be already correctly initialized by AesInit(). Behavior with invalid AES context is undefined.

If AesContext is NULL, then return FALSE. If Input is NULL, then return FALSE. If InputSize is not multiple of block size (16 bytes), then return FALSE. If Ivec is NULL, then return FALSE. If Output is NULL, then return FALSE.

Parameters
[in]AesContextPointer to the AES context.
[in]InputPointer to the buffer containing the data to be encrypted.
[in]InputSizeSize of the Input buffer in bytes.
[in]IvecPointer to initialization vector.
[out]OutputPointer to a buffer that receives the AES encryption output.
Return values
TRUEAES encryption succeeded.
FALSEAES encryption failed.

Definition at line 112 of file CryptAes.c.

◆ AesGetContextSize()

UINTN EFIAPI AesGetContextSize ( VOID  )

Retrieves the size, in bytes, of the context buffer required for AES operations.

Returns
The size, in bytes, of the context buffer required for AES operations.

Definition at line 20 of file CryptAes.c.

◆ AesInit()

BOOLEAN EFIAPI AesInit ( OUT VOID *  AesContext,
IN CONST UINT8 *  Key,
IN UINTN  KeyLength 
)

Initializes user-supplied memory as AES context for subsequent use.

This function initializes user-supplied memory pointed by AesContext as AES context. In addition, it sets up all AES key materials for subsequent encryption and decryption operations. There are 3 options for key length, 128 bits, 192 bits, and 256 bits.

If AesContext is NULL, then return FALSE. If Key is NULL, then return FALSE. If KeyLength is not valid, then return FALSE.

Parameters
[out]AesContextPointer to AES context being initialized.
[in]KeyPointer to the user-supplied AES key.
[in]KeyLengthLength of AES key in bits.
Return values
TRUEAES context initialization succeeded.
FALSEAES context initialization failed.

Definition at line 53 of file CryptAes.c.