Fix invalid html in readme

This commit is contained in:
Leonetienne 2022-05-22 21:25:53 +02:00
parent 8c7506297f
commit 3978bb6b18
No known key found for this signature in database
GPG Key ID: C33879CD92E9708C

View File

@ -111,7 +111,7 @@ GHash is a streaming hash function based on the GCipher.
For all intents and purposes, it does the following: For all intents and purposes, it does the following:
You have a *Block b*, which is initialized with a static random distribution. 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*. 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*.
(*b<sub>i</sub> = b</sub>i-1</sub> &#8853; E(key=b, data=k)*) (*b<sub>i</sub> = b<sub>i-1</sub> &#8853; E(key=b, data=k)*)
The lastest *b* represents the current result of the hash function. The lastest *b* represents the current result of the hash function.