X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=chiark-tcl.git;a=blobdiff_plain;f=crypto%2Falgtables.c;h=e0d6cc8bb3fddb2bc75f6e4bb288e6eba873907b;hp=87b365b412491a7b653f3282b9b30f89f15bc64d;hb=1306d8ad8b0597fd67d933a363d0be2ac891dd8a;hpb=b845521abfac164a92742f984eafb91d5d7c743d diff --git a/crypto/algtables.c b/crypto/algtables.c index 87b365b..e0d6cc8 100644 --- a/crypto/algtables.c +++ b/crypto/algtables.c @@ -1,75 +1,110 @@ /* + * crypto - Tcl bindings for parts of the `nettle' crypto library + * Copyright 2006-2012 Ian Jackson + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of 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. + * + * This program 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 a copy of the GNU General Public License + * along with this library; if not, see . */ -#include -#include -#include "hbytes.h" -#include "serpent.h" -#include "sha1.h" -#include "md5.h" +#include "chiark_tcl_crypto.h" -static void alg_serpent_byteswap_block(Byte *b) { - uint32_t t, *a= (void*)b; +#include +#include +#include +#include +#include +#include - t= htonl(a[0]); - a[0]= htonl(a[3]); - a[3]= t; +#define NETTLE_BLOCKCIPHERS \ + DO(serpent, SERPENT) \ + DO(twofish, TWOFISH) \ +/* DO(aes, AES) */ \ + DO(blowfish, BLOWFISH) \ + /* ALIAS(rijndael, aes, AES)*/ - t= htonl(a[1]); - a[1]= htonl(a[2]); - a[2]= t; -} +#define ALIAS(alias,name,NAME) +#define DO(name,NAME) \ + static void alg_##name##_makekey(void *sch, const void *key, int keylen) { \ + name##_set_key(sch, keylen, key); \ + } \ + static void alg_##name##_encr(const void *sch, const void *in, void *out) { \ + name##_encrypt((void*)sch, NAME##_BLOCK_SIZE, out, in); \ + } \ + static void alg_##name##_decr(const void *sch, const void *in, void *out) { \ + name##_decrypt((void*)sch, NAME##_BLOCK_SIZE, out, in); \ + } + NETTLE_BLOCKCIPHERS +#undef DO +#undef ALIAS -static void alg_serpent_makekey(void *schedule, const Byte *key, int keylen) { - serpent_makekey(schedule, keylen*8, key); -} - -static void alg_serpent_encrypt(const void *sch, const void *in, void *out) { - serpent_encrypt(sch, in, out); -} - -static void alg_serpent_decrypt(const void *sch, const void *in, void *out) { - serpent_decrypt(sch, in, out); -} +const BlockCipherAlgInfo cht_blockcipheralginfo_entries[]= { +#define ALIAS(alias,name,NAME) \ + { #alias, NAME##_BLOCK_SIZE, sizeof(struct name##_ctx), \ + NAME##_MIN_KEY_SIZE, NAME##_MAX_KEY_SIZE, \ + { alg_##name##_makekey, alg_##name##_encr }, \ + { alg_##name##_makekey, alg_##name##_decr } \ + }, +#define DO(name,NAME) ALIAS(name,name,NAME) + NETTLE_BLOCKCIPHERS +#undef DO +#undef ALIAS + { 0 } +}; -const BlockCipherAlgInfo blockcipheralginfos[]= { - { "serpent", 16, sizeof(struct SerpentKeyInstance), 16,32, - alg_serpent_byteswap_block, - { alg_serpent_makekey, alg_serpent_encrypt }, - { alg_serpent_makekey, alg_serpent_decrypt } }, +const BlockCipherPropInfo cht_blockcipherpropinfo_entries[]= { + { "blocklen", offsetof(BlockCipherAlgInfo, blocksize) }, + { "minkeylen", offsetof(BlockCipherAlgInfo, key_min) }, + { "maxkeylen", offsetof(BlockCipherAlgInfo, key_max) }, { 0 } }; -static void alg_sha1_init(void *state) { sha1_init(state); } -static void alg_sha1_update(void *state, const Byte *data, int len) { - sha1_update(state, data, len); -} -static void alg_sha1_final(void *state, Byte *digest) { - sha1_final(state, digest); -} -static void alg_sha1_oneshot(Byte *digest, const Byte *data, int len) { - sha1(data,len,digest); -} +#define NETTLE_DIGESTS \ + DO(sha1, SHA1) \ + DO(sha256, SHA256) \ + DO(md5, MD5) -static void alg_md5_init(void *state) { MD5Init(state); } -static void alg_md5_update(void *state, const Byte *data, int len) { - MD5Update(state, data, len); -} -static void alg_md5_final(void *state, Byte *digest) { - MD5Final(digest, state); -} -static void alg_md5_oneshot(Byte *digest, const Byte *data, int len) { - struct MD5Context ctx; - MD5Init(&ctx); - MD5Update(&ctx,data,len); - MD5Final(digest,&ctx); -} +#define DO(name,NAME) \ + static void alg_##name##_init(void *state) { \ + name##_init(state); \ + } \ + static void alg_##name##_update(void *state, const void *data, int len) { \ + name##_update(state, len, data); \ + } \ + static void alg_##name##_final(void *state, void *digest) { \ + name##_digest(state,NAME##_DIGEST_SIZE,digest); \ + } \ + static void alg_##name##_oneshot(void *digest, const void *data, int len) { \ + struct name##_ctx ctx; \ + name##_init(&ctx); \ + name##_update(&ctx, len, data); \ + name##_digest(&ctx,NAME##_DIGEST_SIZE,digest); \ + } + NETTLE_DIGESTS +#undef DO + +const HashAlgPropInfo cht_hashalgpropinfo_entries[]= { + { "hashlen", offsetof(HashAlgInfo, hashsize) }, + { "blocklen", offsetof(HashAlgInfo, blocksize) }, + { 0 } +}; -const HashAlgInfo hashalginfos[]= { - { "sha1", 20, 64, sizeof(struct sha1_state), - alg_sha1_init, alg_sha1_update, alg_sha1_final, alg_sha1_oneshot }, - { "md5", 16, 64, sizeof(struct MD5Context), - alg_md5_init, alg_md5_update, alg_md5_final, alg_md5_oneshot }, +const HashAlgInfo cht_hashalginfo_entries[]= { +#define DO(name,NAME) \ + { #name, NAME##_DIGEST_SIZE, NAME##_DATA_SIZE, sizeof(struct name##_ctx), \ + alg_##name##_init, alg_##name##_update, alg_##name##_final, \ + alg_##name##_oneshot }, + NETTLE_DIGESTS +#undef DO { 0 } };