commit | c7799b00abeccbd9f5e969c8cbd59896852db4aa | [log] [tgz] |
---|---|---|
author | Loic Poulain <loic.poulain@linaro.org> | Wed Jun 01 20:26:28 2022 +0200 |
committer | Tom Rini <trini@konsulko.com> | Mon Jun 27 13:36:28 2022 -0400 |
tree | da90c020ff6e1b8ecdabf577c4858c7588e486ec | |
parent | 028e4a3a759b7202921f02271843d7194b66b229 [diff] |
sha1: Fix digest state size/type sha1 digest size is 5*32-bit => 160-bit. Using 64-bit unsigned long does not cause issue with the current sha1 implementation, but could be problematic for vectorized access. Signed-off-by: Loic Poulain <loic.poulain@linaro.org>