X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=crypto%2Falgtables.c;h=bb111dea4e2cc958e778fba123b952d886c8b61d;hb=da1c2c3cbb87a600f19e250f93ef9fa4f89844fc;hp=24ebba7c5e1cd249740f294973a6627cbb14fcb9;hpb=43f84d7998000957da8c0441d7658cdf633f90a1;p=chiark-tcl.git diff --git a/crypto/algtables.c b/crypto/algtables.c index 24ebba7..bb111de 100644 --- a/crypto/algtables.c +++ b/crypto/algtables.c @@ -27,10 +27,10 @@ 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); \ + 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); \ + name##_decrypt((void*)sch, NAME##_BLOCK_SIZE, out, in); \ } NETTLE_BLOCKCIPHERS #undef DO