mirror of
https://github.com/ipxe/ipxe
synced 2026-02-14 02:31:26 +03:00
[crypto] Fix endianness typo in comment
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -213,7 +213,7 @@ static void md5_digest ( struct md5_context *context ) {
|
|||||||
i, *a, *b, *c, *d );
|
i, *a, *b, *c, *d );
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Add chunk to hash and convert back to big-endian */
|
/* Add chunk to hash and convert back to little-endian */
|
||||||
for ( i = 0 ; i < 4 ; i++ ) {
|
for ( i = 0 ; i < 4 ; i++ ) {
|
||||||
context->ddd.dd.digest.h[i] =
|
context->ddd.dd.digest.h[i] =
|
||||||
cpu_to_le32 ( context->ddd.dd.digest.h[i] +
|
cpu_to_le32 ( context->ddd.dd.digest.h[i] +
|
||||||
|
|||||||
Reference in New Issue
Block a user