From cad16e0a916be5547a4b6a65afb3d5ee876835ed Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Thu, 18 Jun 2015 20:17:51 +0300 Subject: refactoring --- include/aesni/data.h | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) (limited to 'include/aesni/data.h') diff --git a/include/aesni/data.h b/include/aesni/data.h index 381a32a..3ef1c48 100644 --- a/include/aesni/data.h +++ b/include/aesni/data.h @@ -4,22 +4,10 @@ * \date 2015 * \copyright This file is licensed under the terms of the MIT License. * See LICENSE.txt for details. - * - * \brief Declares necessary data structures (for blocks, keys, etc.) and - * auxiliary I/O functions. */ #pragma once -#include "error.h" - -/** - * \defgroup aesni_data Data - * \brief Data structures and I/O functions - * \ingroup aesni - * \{ - */ - #include #include @@ -114,10 +102,10 @@ static __inline AesNI_Block128 __fastcall aesni_xor_block128( * \param[in] hi2 The more significant 4-byte value. * \param[in] lo1 The less significant 4-byte value. * \param[in] lo0 The least significant 4-byte value. + * * \return The built 128-bit block. */ -static __inline AesNI_Block128 __fastcall aesni_make_block128( - int hi3, int hi2, int lo1, int lo0) +static __inline AesNI_Block128 __fastcall aesni_make_block128(int hi3, int hi2, int lo1, int lo0) { return _mm_set_epi32(hi3, hi2, lo1, lo0); } @@ -130,7 +118,3 @@ static __inline AesNI_Block128 __fastcall aesni_reverse_bytes_block128(AesNI_Blo #ifdef __cplusplus } #endif - -/** - * \} - */ -- cgit v1.2.3