All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stephan Mueller <smueller@chronox.de>
To: Herbert Xu <herbert@gondor.apana.org.au>
Cc: Linux Crypto Mailing List <linux-crypto@vger.kernel.org>
Subject: Re: crypto: algif_aead - Switch to new AEAD interface
Date: Wed, 27 May 2015 12:10:03 +0200	[thread overview]
Message-ID: <1517596.JekxWSB2Qc@tauon> (raw)
In-Reply-To: <20150527092441.GA27913@gondor.apana.org.au>

Am Mittwoch, 27. Mai 2015, 17:24:41 schrieb Herbert Xu:

Hi Herbert,

>-
>-	if (ctx->enc) {
>-		/* round up output buffer to multiple of block size */
>-		outlen = ((used + bs - 1) / bs * bs);

Why wouldn't the round up for the output not be needed any more? If the caller 
provides input data that is not multiple of block sizes and the output buffer 
is also not multiple of block sizes, wouldn't an encrypt overstep boundaries?

>-		/* add the size needed for the auth tag to be created */
>-		outlen += as;
>-	} else {
>-		/* output data size is input without the authentication tag */
>-		outlen = used - as;
>-		/* round up output buffer to multiple of block size */
>-		outlen = ((outlen + bs - 1) / bs * bs);

Same here.

>-	}
>+	used -= ctx->aead_assoclen + (ctx->enc ? as : 0);



Ciao
Stephan

  reply	other threads:[~2015-05-27 10:10 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-27  9:24 crypto: algif_aead - Switch to new AEAD interface Herbert Xu
2015-05-27 10:10 ` Stephan Mueller [this message]
2015-05-27 10:14   ` Herbert Xu
2015-05-29 10:09 ` Stephan Mueller
2015-05-29 13:28   ` Herbert Xu
2015-05-29 14:50     ` Stephan Mueller
2015-05-29 21:32       ` Stephan Mueller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1517596.JekxWSB2Qc@tauon \
    --to=smueller@chronox.de \
    --cc=herbert@gondor.apana.org.au \
    --cc=linux-crypto@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.