Select Git revision
-
Fredrik Hübinette (Hubbe) authored
Rev: src/array.c:1.96 Rev: src/error.c:1.64 Rev: src/errors.h:1.14 Rev: src/gc.c:1.142 Rev: src/interpret.c:1.175 Rev: src/lex.c:1.84 Rev: src/modules/Java/configure.in:1.20 Rev: src/modules/Java/jvm.c:1.29 Rev: src/object.c:1.153 Rev: src/svalue.c:1.88 Rev: src/threads.c:1.146 Rev: src/threads.h:1.106
Fredrik Hübinette (Hubbe) authoredRev: src/array.c:1.96 Rev: src/error.c:1.64 Rev: src/errors.h:1.14 Rev: src/gc.c:1.142 Rev: src/interpret.c:1.175 Rev: src/lex.c:1.84 Rev: src/modules/Java/configure.in:1.20 Rev: src/modules/Java/jvm.c:1.29 Rev: src/object.c:1.153 Rev: src/svalue.c:1.88 Rev: src/threads.c:1.146 Rev: src/threads.h:1.106
camellia128-meta.c 1.47 KiB
/* camellia128-meta.c
Copyright (C) 2010, 2013, 2014 Niels Möller
This file is part of GNU Nettle.
GNU Nettle is free software: you can redistribute it and/or
modify it under the terms of either:
* the GNU Lesser General Public License as published by the Free
Software Foundation; either version 3 of the License, or (at your
option) any later version.
or
* the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your
option) any later version.
or both in parallel, as here.
GNU Nettle is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received copies of the GNU General Public License and
the GNU Lesser General Public License along with this program. If
not, see http://www.gnu.org/licenses/.
*/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include <assert.h>
#include "nettle-meta.h"
#include "camellia.h"
const struct nettle_cipher nettle_camellia128 =
{ "camellia128", sizeof(struct camellia128_ctx),
CAMELLIA_BLOCK_SIZE, CAMELLIA128_KEY_SIZE,
(nettle_set_key_func *) camellia128_set_encrypt_key,
(nettle_set_key_func *) camellia128_set_decrypt_key,
(nettle_cipher_func *) camellia128_crypt,
(nettle_cipher_func *) camellia128_crypt
};