tcgbios: Fix a typo in the sha256 algo description

Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
This commit is contained in:
Stefan Berger 2021-07-08 22:53:09 -04:00 committed by Alexey Kardashevskiy
parent 286073fac6
commit 064a999a23
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ static void sha256_block(uint32_t *w, sha256_ctx *ctx)
*
* 0 <= i <= 15:
* W(t) = M(t)
* 16 <= i <= 79:
* 16 <= i <= 63:
* W(t) = sigma1(W(t-2)) + W(t-7) + sigma0(W(t-15)) + W(t-16)
*/