sl@0: /* sl@0: * LIBOIL - Library of Optimized Inner Loops sl@0: * Copyright (c) 2004 David A. Schleef sl@0: * All rights reserved. sl@0: * sl@0: * Redistribution and use in source and binary forms, with or without sl@0: * modification, are permitted provided that the following conditions sl@0: * are met: sl@0: * 1. Redistributions of source code must retain the above copyright sl@0: * notice, this list of conditions and the following disclaimer. sl@0: * 2. Redistributions in binary form must reproduce the above copyright sl@0: * notice, this list of conditions and the following disclaimer in the sl@0: * documentation and/or other materials provided with the distribution. sl@0: * sl@0: * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR sl@0: * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED sl@0: * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE sl@0: * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, sl@0: * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES sl@0: * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR sl@0: * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) sl@0: * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, sl@0: * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING sl@0: * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE sl@0: * POSSIBILITY OF SUCH DAMAGE. sl@0: */ sl@0: //Portions Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. sl@0: sl@0: #ifdef HAVE_CONFIG_H sl@0: #include "config.h" sl@0: #endif sl@0: sl@0: #include sl@0: #include "md5.h" sl@0: sl@0: sl@0: /** sl@0: * oil_md5: sl@0: * @i_4: sl@0: * @s_16: sl@0: * sl@0: * Performs an MD5 checksum iteration. The iteration operates on sl@0: * the 64 bytes contained in @s_16, and changes the hash contained sl@0: * in @i_4. This only implements a portion of the MD5 algorithm. sl@0: * The full MD5 algorithm requires initializing the hash sl@0: * with a specific value and additional handling of bytes at the sl@0: * end of the stream. sl@0: * sl@0: * See also the md5 example in the Liboil source code. sl@0: * sl@0: * FIXME: need a reference here sl@0: */ sl@0: OIL_DEFINE_CLASS (md5, "uint32_t *i_4, uint32_t *s_16"); sl@0: sl@0: #ifdef WORDS_BIGENDIAN sl@0: #define uint32_to_host(a) \ sl@0: ((((a)&0xff)<<24)|(((a)&0xff00)<<8)|(((a)&0xff0000)>>8)|(((a)>>24)&0xff)) sl@0: #else sl@0: #define uint32_to_host(a) (a) sl@0: #endif sl@0: sl@0: #define F1(x, y, z) (z ^ (x & (y ^ z))) sl@0: #define F2(x, y, z) F1(z, x, y) sl@0: #define F3(x, y, z) (x ^ y ^ z) sl@0: #define F4(x, y, z) (y ^ (x | ~z)) sl@0: sl@0: #define MD5STEP(f,w,x,y,z,in,offset,s) \ sl@0: (w += f(x,y,z) + uint32_to_host(in) + offset, w = (w<>(32-s)) + x) sl@0: sl@0: sl@0: static void sl@0: md5_c(uint32_t *state, uint32_t *src) sl@0: { sl@0: uint32_t a,b,c,d; sl@0: sl@0: a = state[0]; sl@0: b = state[1]; sl@0: c = state[2]; sl@0: d = state[3]; sl@0: sl@0: MD5STEP(F1, a, b, c, d, src[0], 0xd76aa478, 7); sl@0: MD5STEP(F1, d, a, b, c, src[1], 0xe8c7b756, 12); sl@0: MD5STEP(F1, c, d, a, b, src[2], 0x242070db, 17); sl@0: MD5STEP(F1, b, c, d, a, src[3], 0xc1bdceee, 22); sl@0: MD5STEP(F1, a, b, c, d, src[4], 0xf57c0faf, 7); sl@0: MD5STEP(F1, d, a, b, c, src[5], 0x4787c62a, 12); sl@0: MD5STEP(F1, c, d, a, b, src[6], 0xa8304613, 17); sl@0: MD5STEP(F1, b, c, d, a, src[7], 0xfd469501, 22); sl@0: MD5STEP(F1, a, b, c, d, src[8], 0x698098d8, 7); sl@0: MD5STEP(F1, d, a, b, c, src[9], 0x8b44f7af, 12); sl@0: MD5STEP(F1, c, d, a, b, src[10], 0xffff5bb1, 17); sl@0: MD5STEP(F1, b, c, d, a, src[11], 0x895cd7be, 22); sl@0: MD5STEP(F1, a, b, c, d, src[12], 0x6b901122, 7); sl@0: MD5STEP(F1, d, a, b, c, src[13], 0xfd987193, 12); sl@0: MD5STEP(F1, c, d, a, b, src[14], 0xa679438e, 17); sl@0: MD5STEP(F1, b, c, d, a, src[15], 0x49b40821, 22); sl@0: sl@0: MD5STEP(F2, a, b, c, d, src[1], 0xf61e2562, 5); sl@0: MD5STEP(F2, d, a, b, c, src[6], 0xc040b340, 9); sl@0: MD5STEP(F2, c, d, a, b, src[11], 0x265e5a51, 14); sl@0: MD5STEP(F2, b, c, d, a, src[0], 0xe9b6c7aa, 20); sl@0: MD5STEP(F2, a, b, c, d, src[5], 0xd62f105d, 5); sl@0: MD5STEP(F2, d, a, b, c, src[10], 0x02441453, 9); sl@0: MD5STEP(F2, c, d, a, b, src[15], 0xd8a1e681, 14); sl@0: MD5STEP(F2, b, c, d, a, src[4], 0xe7d3fbc8, 20); sl@0: MD5STEP(F2, a, b, c, d, src[9], 0x21e1cde6, 5); sl@0: MD5STEP(F2, d, a, b, c, src[14], 0xc33707d6, 9); sl@0: MD5STEP(F2, c, d, a, b, src[3], 0xf4d50d87, 14); sl@0: MD5STEP(F2, b, c, d, a, src[8], 0x455a14ed, 20); sl@0: MD5STEP(F2, a, b, c, d, src[13], 0xa9e3e905, 5); sl@0: MD5STEP(F2, d, a, b, c, src[2], 0xfcefa3f8, 9); sl@0: MD5STEP(F2, c, d, a, b, src[7], 0x676f02d9, 14); sl@0: MD5STEP(F2, b, c, d, a, src[12], 0x8d2a4c8a, 20); sl@0: sl@0: MD5STEP(F3, a, b, c, d, src[5], 0xfffa3942, 4); sl@0: MD5STEP(F3, d, a, b, c, src[8], 0x8771f681, 11); sl@0: MD5STEP(F3, c, d, a, b, src[11], 0x6d9d6122, 16); sl@0: MD5STEP(F3, b, c, d, a, src[14], 0xfde5380c, 23); sl@0: MD5STEP(F3, a, b, c, d, src[1], 0xa4beea44, 4); sl@0: MD5STEP(F3, d, a, b, c, src[4], 0x4bdecfa9, 11); sl@0: MD5STEP(F3, c, d, a, b, src[7], 0xf6bb4b60, 16); sl@0: MD5STEP(F3, b, c, d, a, src[10], 0xbebfbc70, 23); sl@0: MD5STEP(F3, a, b, c, d, src[13], 0x289b7ec6, 4); sl@0: MD5STEP(F3, d, a, b, c, src[0], 0xeaa127fa, 11); sl@0: MD5STEP(F3, c, d, a, b, src[3], 0xd4ef3085, 16); sl@0: MD5STEP(F3, b, c, d, a, src[6], 0x04881d05, 23); sl@0: MD5STEP(F3, a, b, c, d, src[9], 0xd9d4d039, 4); sl@0: MD5STEP(F3, d, a, b, c, src[12], 0xe6db99e5, 11); sl@0: MD5STEP(F3, c, d, a, b, src[15], 0x1fa27cf8, 16); sl@0: MD5STEP(F3, b, c, d, a, src[2], 0xc4ac5665, 23); sl@0: sl@0: MD5STEP(F4, a, b, c, d, src[0], 0xf4292244, 6); sl@0: MD5STEP(F4, d, a, b, c, src[7], 0x432aff97, 10); sl@0: MD5STEP(F4, c, d, a, b, src[14], 0xab9423a7, 15); sl@0: MD5STEP(F4, b, c, d, a, src[5], 0xfc93a039, 21); sl@0: MD5STEP(F4, a, b, c, d, src[12], 0x655b59c3, 6); sl@0: MD5STEP(F4, d, a, b, c, src[3], 0x8f0ccc92, 10); sl@0: MD5STEP(F4, c, d, a, b, src[10], 0xffeff47d, 15); sl@0: MD5STEP(F4, b, c, d, a, src[1], 0x85845dd1, 21); sl@0: MD5STEP(F4, a, b, c, d, src[8], 0x6fa87e4f, 6); sl@0: MD5STEP(F4, d, a, b, c, src[15], 0xfe2ce6e0, 10); sl@0: MD5STEP(F4, c, d, a, b, src[6], 0xa3014314, 15); sl@0: MD5STEP(F4, b, c, d, a, src[13], 0x4e0811a1, 21); sl@0: MD5STEP(F4, a, b, c, d, src[4], 0xf7537e82, 6); sl@0: MD5STEP(F4, d, a, b, c, src[11], 0xbd3af235, 10); sl@0: MD5STEP(F4, c, d, a, b, src[2], 0x2ad7d2bb, 15); sl@0: MD5STEP(F4, b, c, d, a, src[9], 0xeb86d391, 21); sl@0: sl@0: state[0] += a; sl@0: state[1] += b; sl@0: state[2] += c; sl@0: state[3] += d; sl@0: } sl@0: sl@0: sl@0: OIL_DEFINE_IMPL_REF (md5_c, md5); sl@0: sl@0: sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: sl@0: OilFunctionClass* __oil_function_class_md5() { sl@0: return &_oil_function_class_md5; sl@0: } sl@0: #endif sl@0: sl@0: sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: sl@0: OilFunctionImpl* __oil_function_impl_md5_c() { sl@0: return &_oil_function_impl_md5_c; sl@0: } sl@0: #endif sl@0: sl@0: sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: sl@0: EXPORT_C void** _oil_function_class_ptr_md5 () { sl@0: oil_function_class_ptr_md5 = __oil_function_class_md5(); sl@0: return &oil_function_class_ptr_md5->func; sl@0: } sl@0: #endif sl@0: