X-Git-Url: https://git.distorted.org.uk/~mdw/secnet/blobdiff_plain/5b5f297f9a9d47ee7e9804d5bdaa552f1953c6b6..86420bb75f19f628ffd2d8ff9964e59ed99e3187:/transform-eax.c diff --git a/transform-eax.c b/transform-eax.c index 31d8171..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; } @@ -179,7 +196,7 @@ static uint32_t transform_forward(void *sst, struct buffer_if *buf, TEAX_DEBUG(buf->start,buf->size); - memcpy(buf_append(buf,SEQLEN), nonce, SEQLEN); + BUF_ADD_BYTES(append,buf,nonce,SEQLEN); TEAX_DEBUG(nonce,SEQLEN); @@ -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); @@ -294,7 +310,7 @@ static list_t *transform_apply(closure_t *self, struct cloc loc, padding_round = 1; st->p.padding_mask = padding_round-1; - st->ops.max_start_pad=0; + update_max_start_pad(&transform_max_start_pad, 0); st->ops.keylen=0; st->ops.create=transform_create;