@@ -165,21 +165,21 @@ memcpy(p, buffer, size); return; } memcpy(p, buffer, t); - OF_BSWAP32_V_IF_BE((uint32_t*)in, 16); + of_bswap32_vec_if_be((uint32_t*)in, 16); md5_transform(buf, (uint32_t*)in); buffer += t; size -= t; } /* Process data in 64-byte chunks */ while (size >= 64) { memcpy(in, buffer, 64); - OF_BSWAP32_V_IF_BE((uint32_t*)in, 16); + of_bswap32_vec_if_be((uint32_t*)in, 16); md5_transform(buf, (uint32_t*)in); buffer += 64; size -= 64; } @@ -211,28 +211,28 @@ /* Pad out to 56 mod 64 */ if (count < 8) { /* Two lots of padding: Pad the first block to 64 bytes */ memset(p, 0, count); - OF_BSWAP32_V_IF_BE((uint32_t*)in, 16); + of_bswap32_vec_if_be((uint32_t*)in, 16); md5_transform(buf, (uint32_t*)in); /* Now fill the next block with 56 bytes */ memset(in, 0, 56); } else { /* Pad block to 56 bytes */ memset(p, 0, count - 8); } - OF_BSWAP32_V_IF_BE((uint32_t*)in, 14); + of_bswap32_vec_if_be((uint32_t*)in, 14); /* Append length in bits and transform */ ((uint32_t*)in)[14] = bits[0]; ((uint32_t*)in)[15] = bits[1]; md5_transform(buf, (uint32_t*)in); - OF_BSWAP32_V_IF_BE(buf, 4); + of_bswap32_vec_if_be(buf, 4); isCalculated = YES; return (uint8_t*)buf; } @end