]> git.baikalelectronics.ru Git - kernel.git/commit
crypto: cmac - return -EINVAL if block size is unsupported
authorEric Biggers <ebiggers@google.com>
Mon, 10 Oct 2016 17:15:14 +0000 (10:15 -0700)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 21 Oct 2016 03:03:42 +0000 (11:03 +0800)
commit045fdf386e909c7926afce8bc2414eab7eac0c4b
tree5291b9991fd74328a05224b067fad95d89d16129
parentadeb5b1ea6bc6795c8d011201460b4a77479ae1c
crypto: cmac - return -EINVAL if block size is unsupported

cmac_create() previously returned 0 if a cipher with a block size other
than 8 or 16 bytes was specified.  It should return -EINVAL instead.
Granted, this doesn't actually change any behavior because cryptomgr
currently ignores any return value other than -EAGAIN from template
->create() functions.

Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/cmac.c