Jump to content

MD4: Difference between revisions

25 bytes removed ,  9 months ago
m
Minor code improvement.
m (Minor code improvement.)
m (Minor code improvement.)
Line 709:
 
int32_t unsigned_right_shift(const int32_t& base, const int32_t& shift) {
if ( shift < 0 || shift >= 32 || base == 0 ) {
return 0;
}
if ( base == 0 ) {
return 0;
}
908

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.