X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=secnet.git;a=blobdiff_plain;f=transform-eax.c;h=5a7bd640d71517abc611d11d06644961c2c8db98;hp=46dc879c69ffcb1c6f21c71aea28424cc28322c5;hb=55b79a8366a012388edabe7d2fad72a3a54ffe33;hpb=4f28e77ed21e75fcfb30e2f8d1d2b9b1657f44c6 diff --git a/transform-eax.c b/transform-eax.c index 46dc879..5a7bd64 100644 --- a/transform-eax.c +++ b/transform-eax.c @@ -1,6 +1,25 @@ /* * eax-transform.c: EAX-Serpent bulk data transformation + */ +/* + * This file is part of secnet. + * See README for full list of copyright holders. * + * secnet 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 d of the License, or + * (at your option) any later version. + * + * secnet 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 + * version 3 along with secnet; if not, see + * https://www.gnu.org/licenses/gpl.html. + */ +/* * We use EAX with the following parameters: * * Plaintext: @@ -55,7 +74,8 @@ #define SEQLEN 4 struct transform_params { - uint32_t max_seq_skew, tag_length, padding_mask; + SEQNUM_PARAMS_FIELDS; + uint32_t tag_length, padding_mask; }; struct transform { @@ -67,11 +87,9 @@ struct transform { struct transform_inst { struct transform_inst_if ops; struct transform_params p; - unsigned keyed:1; /* remaining valid iff keyed */ unsigned direction:1; - uint32_t sendseq; - uint32_t lastrecvseq; + SEQNUM_KEYED_FIELDS; struct keyInstance key; uint8_t info_b[BLOCK_SIZE], info_p[BLOCK_SIZE]; }; @@ -127,11 +145,10 @@ static bool_t transform_setkey(void *sst, uint8_t *key, int32_t keylen, TEAX_DEBUG(hash_out+32,8); ti->direction=direction; - ti->sendseq=get_uint32(hash_out+32+direction*4); - ti->lastrecvseq=get_uint32(hash_out+32+!direction*4); serpent_makekey(&ti->key, 32*8, hash_out); eax_setup(ti); - ti->keyed=True; + SEQNUM_KEYED_INIT(get_uint32(hash_out+32+!direction*4), + get_uint32(hash_out+32+direction*4)); return True; } @@ -231,7 +248,7 @@ static uint32_t transform_reverse(void *sst, struct buffer_if *buf, size_t padlen = *padp; if (!buf_unappend(buf,padlen-1)) goto too_short; - SEQNUM_CHECK(seqnum, ti->p.max_seq_skew); + SEQNUM_CHECK(seqnum, &ti->p); TEAX_DEBUG(buf->start,buf->size); @@ -260,7 +277,7 @@ static list_t *transform_apply(closure_t *self, struct cloc loc, item_t *item; dict_t *dict; - st=safe_malloc(sizeof(*st),"eax-serpent"); + NEW(st); st->cl.description="eax-serpent"; st->cl.type=CL_TRANSFORM; st->cl.apply=NULL; @@ -275,8 +292,7 @@ static list_t *transform_apply(closure_t *self, struct cloc loc, SET_CAPAB_TRANSFORMNUM(CAPAB_TRANSFORMNUM_EAXSERPENT); - st->p.max_seq_skew=dict_read_number(dict, "max-sequence-skew", - False, "eax-serpent", loc, 10); + SEQNUM_PARAMS_INIT(dict,&st->p,"eax-serpent",loc); st->p.tag_length=dict_read_number(dict, "tag-length-bytes", False, "eax-serpent", loc, 128/8);