From 127f55dc5d0707350b96ca9ddd9aeb65ef9910a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Mon, 14 Jan 2002 15:45:59 +0100 Subject: [PATCH] New files. Rev: src/nettle/nettle-internal.c:1.1 Rev: src/nettle/nettle-internal.h:1.1 --- nettle-internal.c | 81 +++++++++++++++++++++++++++++++++++++++++++++++ nettle-internal.h | 41 ++++++++++++++++++++++++ 2 files changed, 122 insertions(+) create mode 100644 nettle-internal.c create mode 100644 nettle-internal.h diff --git a/nettle-internal.c b/nettle-internal.c new file mode 100644 index 00000000..b1364634 --- /dev/null +++ b/nettle-internal.c @@ -0,0 +1,81 @@ +/* nettle-internal.c + * + * Things that are used only by the testsuite and benchmark, and + * subject to change. + */ + +/* nettle, low-level cryptographics library + * + * Copyright (C) 2002 Niels M�ller + * + * The nettle library is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation; either version 2.1 of the License, or (at your + * option) any later version. + * + * The nettle library 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 Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with the nettle library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, + * MA 02111-1307, USA. + */ + +#include "nettle-internal.h" +#include "des.h" +#include "blowfish.h" + +#include <assert.h> +#include <stdlib.h> + +/* DES uses a different signature for the key set function. + * And we have to adjust parity. */ +static void +des_set_key_hack(void *c, unsigned length, const uint8_t *key) +{ + struct des_ctx *ctx = c; + uint8_t pkey[DES_KEY_SIZE]; + + assert(length == DES_KEY_SIZE); + des_fix_parity(DES_KEY_SIZE, pkey, key); + if (!des_set_key(ctx, pkey)) + abort(); +} + +static void +des3_set_key_hack(void *c, unsigned length, const uint8_t *key) +{ + struct des3_ctx *ctx = c; + uint8_t pkey[DES3_KEY_SIZE]; + + assert(length == DES3_KEY_SIZE); + des_fix_parity(DES3_KEY_SIZE, pkey, key); + if (!des3_set_key(ctx, pkey)) + abort(); +} + +const struct nettle_cipher +nettle_des = { + "des", sizeof(struct des_ctx), + DES_BLOCK_SIZE, DES_KEY_SIZE, + des_set_key_hack, des_set_key_hack, + (nettle_crypt_func) des_encrypt, + (nettle_crypt_func) des_decrypt +}; + +const struct nettle_cipher +nettle_des3 = { + "des3", sizeof(struct des3_ctx), + DES3_BLOCK_SIZE, DES3_KEY_SIZE, + des3_set_key_hack, des3_set_key_hack, + (nettle_crypt_func) des3_encrypt, + (nettle_crypt_func) des3_decrypt +}; + +/* NOTE: This is not as nice as one might think, as it will crash if + * we try to encrypt something with a weak key. */ +const struct nettle_cipher +nettle_blowfish128 = _NETTLE_CIPHER(blowfish, BLOWFISH, 16); diff --git a/nettle-internal.h b/nettle-internal.h new file mode 100644 index 00000000..5771829c --- /dev/null +++ b/nettle-internal.h @@ -0,0 +1,41 @@ +/* nettle-internal.h + * + * Things that are used only by the testsuite and benchmark, and + * subject to change. + */ + +/* nettle, low-level cryptographics library + * + * Copyright (C) 2002 Niels M�ller + * + * The nettle library is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation; either version 2.1 of the License, or (at your + * option) any later version. + * + * The nettle library 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 Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with the nettle library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, + * MA 02111-1307, USA. + */ + +#ifndef NETTLE_INTERNAL_H_INCLUDED +#define NETTLE_INTERNAL_H_INCLUDED + +#include "nettle-meta.h" + +/* Doesn't quite fit with the other algorithms, because of the weak + * keys. Weak keys are not reported, the functions will simply crash + * if you try to use a weak key. */ + +extern const struct nettle_cipher nettle_des; +extern const struct nettle_cipher nettle_des3; + +extern const struct nettle_cipher nettle_blowfish128; + +#endif /* NETTLE_INTERNAL_H_INCLUDED */ -- GitLab