From 3978bb6b1859d2ec78eb23a8d4c4998be55ef571 Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Sun, 22 May 2022 21:25:53 +0200 Subject: [PATCH] Fix invalid html in readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 0e36a94..4f7c8e4 100644 --- a/readme.md +++ b/readme.md @@ -111,7 +111,7 @@ GHash is a streaming hash function based on the GCipher. For all intents and purposes, it does the following: You have a *Block b*, which is initialized with a static random distribution. Once you give the GHash instance a data block to digest, it will use the GCipher to encrypt it, with itself as a key, and xor that onto *b*. -(*bi = bi-1 ⊕ E(key=b, data=k)*) +(*bi = bi-1 ⊕ E(key=b, data=k)*) The lastest *b* represents the current result of the hash function.