3 This file is part of the AVR-Crypto-Lib.
4 Copyright (C) 2014 Daniel Otte (daniel.otte@rub.de)
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef NORX_NORX32_H_
21 #define NORX_NORX32_H_
34 /******************************************************************************/
43 void norx32_finalize(norx32_ctx_t *ctx, void *tag);
44 void norx32_add_header_block(norx32_ctx_t *ctx, const void *block);
45 void norx32_add_header_last_block(
50 void norx32_encrypt_block(norx32_ctx_t *ctx, void *dest, const void *src);
52 void norx32_encrypt_last_block(
57 void norx32_add_trailer_block(norx32_ctx_t *ctx, const void *block);
59 void norx32_add_trailer_last_block(
64 /******************************************************************************/
66 void norx32_default_simple (
72 size_t header_length_B,
76 size_t trailer_length_B );
78 #endif /* NORX_NORX32_H_ */