Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-11-03 05:14:34 +0300
committerAdam Langley <agl@google.com>2015-11-03 05:14:34 +0300
commitf1c1cf879483feac072f17c4951620b4462eacab (patch)
treed5d4e7af7140b4265d25ea274cf6e110a346de78 /include/openssl/md4.h
parent00461cf201b66205653fd6159ae260f453738641 (diff)
Revert "Improve crypto/digest/md32_common.h mechanism."
This reverts commit 00461cf201b66205653fd6159ae260f453738641. Sadly it broke wpa_supplicant.
Diffstat (limited to 'include/openssl/md4.h')
-rw-r--r--include/openssl/md4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/md4.h b/include/openssl/md4.h
index e363b732..1db74993 100644
--- a/include/openssl/md4.h
+++ b/include/openssl/md4.h
@@ -88,7 +88,7 @@ OPENSSL_EXPORT int MD4_Final(uint8_t *md, MD4_CTX *md4);
OPENSSL_EXPORT void MD4_Transform(MD4_CTX *md4, const uint8_t *block);
struct md4_state_st {
- uint32_t h[4];
+ uint32_t A, B, C, D;
uint32_t Nl, Nh;
uint32_t data[16];
unsigned int num;