]> git.baikalelectronics.ru Git - kernel.git/commit
crypto: blake2b - simplify key init
authorDavid Sterba <dsterba@suse.com>
Tue, 12 Nov 2019 10:20:26 +0000 (11:20 +0100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 22 Nov 2019 10:48:35 +0000 (18:48 +0800)
commit6d9a65e40123949388e7613af04b713fab03c144
tree6af31c9ce3eb8abdfd626f7391fc4f82deab925a
parented367f4e54c0daec7e0b6e621be142efde9722d2
crypto: blake2b - simplify key init

The keyed init writes the key bytes to the input buffer and does an
update. We can do that in two ways: fill the buffer and update
immediatelly. This is what current blake2b_init_key does. Any other
following _update or _final will continue from the updated state.

The other way is to write the key and set the number of bytes to process
at the next _update or _final, lazy evaluation. Which leads to the the
simplified code in this patch.

Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/blake2b_generic.c