commit | 25cdbcd9e5d20e431f829cafce48a418830011f4 | [log] [tgz] |
---|---|---|
author | Herbert Xu <herbert@gondor.apana.org.au> | Sun Aug 06 23:03:08 2006 +1000 |
committer | Herbert Xu <herbert@gondor.apana.org.au> | Thu Sep 21 11:41:01 2006 +1000 |
tree | 0dff8422d2b0b1da1d3505b0ad0e840f6f0fd66d | |
parent | 58ec4152895b96f047dcf5e490ee49b4c574dec3 [diff] |
[CRYPTO] crc32c: Fix unconventional setkey usage The convention for setkey is that once it is set it should not change, in particular, init must not wipe out the key set by it. In fact, init should always be used after setkey before any digestion is performed. The only user of crc32c that sets the key is tcrypt. This patch adds the necessary init calls there. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>