diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-21 13:33:50 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-21 13:33:50 +0300 |
commit | 351c5188013fff041c7217aed64478cfc7643480 (patch) | |
tree | c918b5093ac45394439f3dff30da37b809173603 /include/aes/padding.h | |
parent | cmake: install libraries & their headers (diff) | |
download | aes-tools-351c5188013fff041c7217aed64478cfc7643480.tar.gz aes-tools-351c5188013fff041c7217aed64478cfc7643480.zip |
restructure the project
Diffstat (limited to 'include/aes/padding.h')
-rw-r--r-- | include/aes/padding.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/include/aes/padding.h b/include/aes/padding.h deleted file mode 100644 index ba316f5..0000000 --- a/include/aes/padding.h +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "AES tools" project. -// For details, see https://github.com/egor-tensin/aes-tools. -// Distributed under the MIT License. - -#pragma once - -#include "error.h" - -#include <stdlib.h> - -#ifdef __cplusplus -extern "C" -{ -#endif - -typedef enum -{ - AES_PADDING_PKCS7, -} -AES_PaddingMethod; - -AES_StatusCode aes_extract_padding_size( - AES_PaddingMethod, - const void* src, - size_t src_size, - size_t* padding_size, - AES_ErrorDetails*); - -AES_StatusCode aes_fill_with_padding( - AES_PaddingMethod, - void* dest, - size_t padding_size, - AES_ErrorDetails*); - -#ifdef __cplusplus -} -#endif |