os/ossrv/genericopenlibs/liboil/src/md5/md5.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
 * LIBOIL - Library of Optimized Inner Loops
sl@0
     3
 * Copyright (c) 2004 David A. Schleef <ds@schleef.org>
sl@0
     4
 * All rights reserved.
sl@0
     5
 *
sl@0
     6
 * Redistribution and use in source and binary forms, with or without
sl@0
     7
 * modification, are permitted provided that the following conditions
sl@0
     8
 * are met:
sl@0
     9
 * 1. Redistributions of source code must retain the above copyright
sl@0
    10
 *    notice, this list of conditions and the following disclaimer.
sl@0
    11
 * 2. Redistributions in binary form must reproduce the above copyright
sl@0
    12
 *    notice, this list of conditions and the following disclaimer in the
sl@0
    13
 *    documentation and/or other materials provided with the distribution.
sl@0
    14
 * 
sl@0
    15
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
sl@0
    16
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
sl@0
    17
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
sl@0
    18
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
sl@0
    19
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
sl@0
    20
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
sl@0
    21
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sl@0
    22
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
sl@0
    23
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
sl@0
    24
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
sl@0
    25
 * POSSIBILITY OF SUCH DAMAGE.
sl@0
    26
 */
sl@0
    27
//Portions Copyright (c)  2008-2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. 
sl@0
    28
sl@0
    29
#ifdef HAVE_CONFIG_H
sl@0
    30
#include "config.h"
sl@0
    31
#endif
sl@0
    32
sl@0
    33
#include <liboil/liboil.h>
sl@0
    34
#include "md5.h"
sl@0
    35
sl@0
    36
sl@0
    37
/**
sl@0
    38
 * oil_md5:
sl@0
    39
 * @i_4:
sl@0
    40
 * @s_16:
sl@0
    41
 *
sl@0
    42
 * Performs an MD5 checksum iteration.  The iteration operates on
sl@0
    43
 * the 64 bytes contained in @s_16, and changes the hash contained
sl@0
    44
 * in @i_4.  This only implements a portion of the MD5 algorithm.
sl@0
    45
 * The full MD5 algorithm requires initializing the hash
sl@0
    46
 * with a specific value and additional handling of bytes at the
sl@0
    47
 * end of the stream.
sl@0
    48
 *
sl@0
    49
 * See also the md5 example in the Liboil source code.
sl@0
    50
 *
sl@0
    51
 * FIXME: need a reference here
sl@0
    52
 */
sl@0
    53
OIL_DEFINE_CLASS (md5, "uint32_t *i_4, uint32_t *s_16");
sl@0
    54
sl@0
    55
#ifdef WORDS_BIGENDIAN
sl@0
    56
#define uint32_to_host(a) \
sl@0
    57
  ((((a)&0xff)<<24)|(((a)&0xff00)<<8)|(((a)&0xff0000)>>8)|(((a)>>24)&0xff))
sl@0
    58
#else
sl@0
    59
#define uint32_to_host(a) (a)
sl@0
    60
#endif
sl@0
    61
sl@0
    62
#define F1(x, y, z) (z ^ (x & (y ^ z)))
sl@0
    63
#define F2(x, y, z) F1(z, x, y)
sl@0
    64
#define F3(x, y, z) (x ^ y ^ z)
sl@0
    65
#define F4(x, y, z) (y ^ (x | ~z))
sl@0
    66
sl@0
    67
#define MD5STEP(f,w,x,y,z,in,offset,s) \
sl@0
    68
  (w += f(x,y,z) + uint32_to_host(in) + offset, w = (w<<s | w>>(32-s)) + x)
sl@0
    69
sl@0
    70
sl@0
    71
static void
sl@0
    72
md5_c(uint32_t *state, uint32_t *src)
sl@0
    73
{
sl@0
    74
  uint32_t a,b,c,d;
sl@0
    75
sl@0
    76
  a = state[0];
sl@0
    77
  b = state[1];
sl@0
    78
  c = state[2];
sl@0
    79
  d = state[3];
sl@0
    80
sl@0
    81
  MD5STEP(F1, a, b, c, d, src[0], 0xd76aa478, 7);
sl@0
    82
  MD5STEP(F1, d, a, b, c, src[1], 0xe8c7b756, 12);
sl@0
    83
  MD5STEP(F1, c, d, a, b, src[2], 0x242070db, 17);
sl@0
    84
  MD5STEP(F1, b, c, d, a, src[3], 0xc1bdceee, 22);
sl@0
    85
  MD5STEP(F1, a, b, c, d, src[4], 0xf57c0faf, 7);
sl@0
    86
  MD5STEP(F1, d, a, b, c, src[5], 0x4787c62a, 12);
sl@0
    87
  MD5STEP(F1, c, d, a, b, src[6], 0xa8304613, 17);
sl@0
    88
  MD5STEP(F1, b, c, d, a, src[7], 0xfd469501, 22);
sl@0
    89
  MD5STEP(F1, a, b, c, d, src[8], 0x698098d8, 7);
sl@0
    90
  MD5STEP(F1, d, a, b, c, src[9], 0x8b44f7af, 12);
sl@0
    91
  MD5STEP(F1, c, d, a, b, src[10], 0xffff5bb1, 17);
sl@0
    92
  MD5STEP(F1, b, c, d, a, src[11], 0x895cd7be, 22);
sl@0
    93
  MD5STEP(F1, a, b, c, d, src[12], 0x6b901122, 7);
sl@0
    94
  MD5STEP(F1, d, a, b, c, src[13], 0xfd987193, 12);
sl@0
    95
  MD5STEP(F1, c, d, a, b, src[14], 0xa679438e, 17);
sl@0
    96
  MD5STEP(F1, b, c, d, a, src[15], 0x49b40821, 22);
sl@0
    97
sl@0
    98
  MD5STEP(F2, a, b, c, d, src[1], 0xf61e2562, 5);
sl@0
    99
  MD5STEP(F2, d, a, b, c, src[6], 0xc040b340, 9);
sl@0
   100
  MD5STEP(F2, c, d, a, b, src[11], 0x265e5a51, 14);
sl@0
   101
  MD5STEP(F2, b, c, d, a, src[0], 0xe9b6c7aa, 20);
sl@0
   102
  MD5STEP(F2, a, b, c, d, src[5], 0xd62f105d, 5);
sl@0
   103
  MD5STEP(F2, d, a, b, c, src[10], 0x02441453, 9);
sl@0
   104
  MD5STEP(F2, c, d, a, b, src[15], 0xd8a1e681, 14);
sl@0
   105
  MD5STEP(F2, b, c, d, a, src[4], 0xe7d3fbc8, 20);
sl@0
   106
  MD5STEP(F2, a, b, c, d, src[9], 0x21e1cde6, 5);
sl@0
   107
  MD5STEP(F2, d, a, b, c, src[14], 0xc33707d6, 9);
sl@0
   108
  MD5STEP(F2, c, d, a, b, src[3], 0xf4d50d87, 14);
sl@0
   109
  MD5STEP(F2, b, c, d, a, src[8], 0x455a14ed, 20);
sl@0
   110
  MD5STEP(F2, a, b, c, d, src[13], 0xa9e3e905, 5);
sl@0
   111
  MD5STEP(F2, d, a, b, c, src[2], 0xfcefa3f8, 9);
sl@0
   112
  MD5STEP(F2, c, d, a, b, src[7], 0x676f02d9, 14);
sl@0
   113
  MD5STEP(F2, b, c, d, a, src[12], 0x8d2a4c8a, 20);
sl@0
   114
sl@0
   115
  MD5STEP(F3, a, b, c, d, src[5], 0xfffa3942, 4);
sl@0
   116
  MD5STEP(F3, d, a, b, c, src[8], 0x8771f681, 11);
sl@0
   117
  MD5STEP(F3, c, d, a, b, src[11], 0x6d9d6122, 16);
sl@0
   118
  MD5STEP(F3, b, c, d, a, src[14], 0xfde5380c, 23);
sl@0
   119
  MD5STEP(F3, a, b, c, d, src[1], 0xa4beea44, 4);
sl@0
   120
  MD5STEP(F3, d, a, b, c, src[4], 0x4bdecfa9, 11);
sl@0
   121
  MD5STEP(F3, c, d, a, b, src[7], 0xf6bb4b60, 16);
sl@0
   122
  MD5STEP(F3, b, c, d, a, src[10], 0xbebfbc70, 23);
sl@0
   123
  MD5STEP(F3, a, b, c, d, src[13], 0x289b7ec6, 4);
sl@0
   124
  MD5STEP(F3, d, a, b, c, src[0], 0xeaa127fa, 11);
sl@0
   125
  MD5STEP(F3, c, d, a, b, src[3], 0xd4ef3085, 16);
sl@0
   126
  MD5STEP(F3, b, c, d, a, src[6], 0x04881d05, 23);
sl@0
   127
  MD5STEP(F3, a, b, c, d, src[9], 0xd9d4d039, 4);
sl@0
   128
  MD5STEP(F3, d, a, b, c, src[12], 0xe6db99e5, 11);
sl@0
   129
  MD5STEP(F3, c, d, a, b, src[15], 0x1fa27cf8, 16);
sl@0
   130
  MD5STEP(F3, b, c, d, a, src[2], 0xc4ac5665, 23);
sl@0
   131
sl@0
   132
  MD5STEP(F4, a, b, c, d, src[0], 0xf4292244, 6);
sl@0
   133
  MD5STEP(F4, d, a, b, c, src[7], 0x432aff97, 10);
sl@0
   134
  MD5STEP(F4, c, d, a, b, src[14], 0xab9423a7, 15);
sl@0
   135
  MD5STEP(F4, b, c, d, a, src[5], 0xfc93a039, 21);
sl@0
   136
  MD5STEP(F4, a, b, c, d, src[12], 0x655b59c3, 6);
sl@0
   137
  MD5STEP(F4, d, a, b, c, src[3], 0x8f0ccc92, 10);
sl@0
   138
  MD5STEP(F4, c, d, a, b, src[10], 0xffeff47d, 15);
sl@0
   139
  MD5STEP(F4, b, c, d, a, src[1], 0x85845dd1, 21);
sl@0
   140
  MD5STEP(F4, a, b, c, d, src[8], 0x6fa87e4f, 6);
sl@0
   141
  MD5STEP(F4, d, a, b, c, src[15], 0xfe2ce6e0, 10);
sl@0
   142
  MD5STEP(F4, c, d, a, b, src[6], 0xa3014314, 15);
sl@0
   143
  MD5STEP(F4, b, c, d, a, src[13], 0x4e0811a1, 21);
sl@0
   144
  MD5STEP(F4, a, b, c, d, src[4], 0xf7537e82, 6);
sl@0
   145
  MD5STEP(F4, d, a, b, c, src[11], 0xbd3af235, 10);
sl@0
   146
  MD5STEP(F4, c, d, a, b, src[2], 0x2ad7d2bb, 15);
sl@0
   147
  MD5STEP(F4, b, c, d, a, src[9], 0xeb86d391, 21);
sl@0
   148
sl@0
   149
  state[0] += a;
sl@0
   150
  state[1] += b;
sl@0
   151
  state[2] += c;
sl@0
   152
  state[3] += d;
sl@0
   153
}
sl@0
   154
sl@0
   155
sl@0
   156
OIL_DEFINE_IMPL_REF (md5_c, md5);
sl@0
   157
sl@0
   158
sl@0
   159
sl@0
   160
#ifdef	__SYMBIAN32__
sl@0
   161
 
sl@0
   162
OilFunctionClass* __oil_function_class_md5() {
sl@0
   163
		return &_oil_function_class_md5;
sl@0
   164
}
sl@0
   165
#endif
sl@0
   166
sl@0
   167
sl@0
   168
sl@0
   169
#ifdef	__SYMBIAN32__
sl@0
   170
 
sl@0
   171
OilFunctionImpl* __oil_function_impl_md5_c() {
sl@0
   172
		return &_oil_function_impl_md5_c;
sl@0
   173
}
sl@0
   174
#endif
sl@0
   175
sl@0
   176
sl@0
   177
sl@0
   178
#ifdef	__SYMBIAN32__
sl@0
   179
 
sl@0
   180
EXPORT_C void** _oil_function_class_ptr_md5 ()	{
sl@0
   181
	oil_function_class_ptr_md5 = __oil_function_class_md5();
sl@0
   182
	return &oil_function_class_ptr_md5->func;
sl@0
   183
	}
sl@0
   184
#endif
sl@0
   185