Update to OpenSSL 1.0.2.o
This commit is contained in:
@@ -166,7 +166,7 @@ void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c, const void *_inp, size_t bits)
|
||||
goto reconsider;
|
||||
} else
|
||||
#endif
|
||||
if (bits >= 8) {
|
||||
if (bits > 8) {
|
||||
b = ((inp[0] << inpgap) | (inp[1] >> (8 - inpgap)));
|
||||
b &= 0xff;
|
||||
if (bitrem)
|
||||
@@ -183,7 +183,7 @@ void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c, const void *_inp, size_t bits)
|
||||
}
|
||||
if (bitrem)
|
||||
c->data[byteoff] = b << (8 - bitrem);
|
||||
} else { /* remaining less than 8 bits */
|
||||
} else { /* remaining less than or equal to 8 bits */
|
||||
|
||||
b = (inp[0] << inpgap) & 0xff;
|
||||
if (bitrem)
|
||||
|
||||
Reference in New Issue
Block a user