Fix build (broken by MD4_CTX redefine).
Change-Id: I0ce6f88ac2734e0267de5fed2cdd35bc20c9a8b5 Signed-off-by: Piotr Sikora <piotr@cloudflare.com> Reviewed-on: https://boringssl-review.googlesource.com/1650 Reviewed-by: Adam Langley <agl@google.com>
This commit is contained in:
parent
bbac844d73
commit
912806b1bb
@ -90,12 +90,12 @@ OPENSSL_EXPORT uint8_t *MD4(const uint8_t *data, size_t len, uint8_t *out);
|
||||
* transformation using the state from |md4| and 64 bytes from |block|. */
|
||||
OPENSSL_EXPORT void MD4_Transform(MD4_CTX *md4, const uint8_t *block);
|
||||
|
||||
typedef struct md4_state_st {
|
||||
struct md4_state_st {
|
||||
uint32_t A, B, C, D;
|
||||
uint32_t Nl, Nh;
|
||||
uint32_t data[16];
|
||||
unsigned int num;
|
||||
} MD4_CTX;
|
||||
};
|
||||
|
||||
|
||||
#if defined(__cplusplus)
|
||||
|
Loading…
Reference in New Issue
Block a user