Mercurial > pidgin
annotate src/protocols/jabber/sha.c @ 4569:7f2de19d052d
[gaim-migrate @ 4850]
Bug fix. Gaim would crash if using the IM convo window slider bars after plugin removal.
committer: Tailor Script <tailor@pidgin.im>
| author | Herman Bloggs <hermanator12002@yahoo.com> |
|---|---|
| date | Tue, 11 Feb 2003 00:58:28 +0000 |
| parents | 988485669631 |
| children |
| rev | line source |
|---|---|
| 2086 | 1 /* |
| 2 * The contents of this file are subject to the Mozilla Public | |
| 3 * License Version 1.1 (the "License"); you may not use this file | |
| 4 * except in compliance with the License. You may obtain a copy of | |
| 5 * the License at http://www.mozilla.org/MPL/ | |
| 6 * | |
| 7 * Software distributed under the License is distributed on an "AS | |
| 8 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or | |
| 9 * implied. See the License for the specific language governing | |
| 10 * rights and limitations under the License. | |
| 11 * | |
| 12 * The Original Code is SHA 180-1 Reference Implementation (Compact version) | |
| 13 * | |
| 14 * The Initial Developer of the Original Code is Paul Kocher of | |
| 15 * Cryptography Research. Portions created by Paul Kocher are | |
| 16 * Copyright (C) 1995-9 by Cryptography Research, Inc. All | |
| 17 * Rights Reserved. | |
| 18 * | |
| 19 * Contributor(s): | |
| 20 * | |
| 21 */ | |
| 22 | |
| 3127 | 23 #include "lib.h" |
| 2086 | 24 |
|
3717
988485669631
[gaim-migrate @ 3850]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3127
diff
changeset
|
25 #ifdef _WIN32 |
|
988485669631
[gaim-migrate @ 3850]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3127
diff
changeset
|
26 #include "win32dep.h" |
|
988485669631
[gaim-migrate @ 3850]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3127
diff
changeset
|
27 #endif |
|
988485669631
[gaim-migrate @ 3850]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3127
diff
changeset
|
28 |
| 3127 | 29 static void shaHashBlock(j_SHA_CTX *ctx); |
| 2086 | 30 |
| 3127 | 31 void shaInit(j_SHA_CTX *ctx) { |
| 2086 | 32 int i; |
| 33 | |
| 34 ctx->lenW = 0; | |
| 35 ctx->sizeHi = ctx->sizeLo = 0; | |
| 36 | |
| 37 /* Initialize H with the magic constants (see FIPS180 for constants) | |
| 38 */ | |
| 39 ctx->H[0] = 0x67452301L; | |
| 40 ctx->H[1] = 0xefcdab89L; | |
| 41 ctx->H[2] = 0x98badcfeL; | |
| 42 ctx->H[3] = 0x10325476L; | |
| 43 ctx->H[4] = 0xc3d2e1f0L; | |
| 44 | |
| 45 for (i = 0; i < 80; i++) | |
| 46 ctx->W[i] = 0; | |
| 47 } | |
| 48 | |
| 49 | |
| 3127 | 50 void shaUpdate(j_SHA_CTX *ctx, unsigned char *dataIn, int len) { |
| 2086 | 51 int i; |
| 52 | |
| 53 /* Read the data into W and process blocks as they get full | |
| 54 */ | |
| 55 for (i = 0; i < len; i++) { | |
| 56 ctx->W[ctx->lenW / 4] <<= 8; | |
| 57 ctx->W[ctx->lenW / 4] |= (unsigned long)dataIn[i]; | |
| 58 if ((++ctx->lenW) % 64 == 0) { | |
| 59 shaHashBlock(ctx); | |
| 60 ctx->lenW = 0; | |
| 61 } | |
| 62 ctx->sizeLo += 8; | |
| 63 ctx->sizeHi += (ctx->sizeLo < 8); | |
| 64 } | |
| 65 } | |
| 66 | |
| 67 | |
| 3127 | 68 void shaFinal(j_SHA_CTX *ctx, unsigned char hashout[20]) { |
| 2086 | 69 unsigned char pad0x80 = 0x80; |
| 70 unsigned char pad0x00 = 0x00; | |
| 71 unsigned char padlen[8]; | |
| 72 int i; | |
| 73 | |
| 74 /* Pad with a binary 1 (e.g. 0x80), then zeroes, then length | |
| 75 */ | |
| 76 padlen[0] = (unsigned char)((ctx->sizeHi >> 24) & 255); | |
| 77 padlen[1] = (unsigned char)((ctx->sizeHi >> 16) & 255); | |
| 78 padlen[2] = (unsigned char)((ctx->sizeHi >> 8) & 255); | |
| 79 padlen[3] = (unsigned char)((ctx->sizeHi >> 0) & 255); | |
| 80 padlen[4] = (unsigned char)((ctx->sizeLo >> 24) & 255); | |
| 81 padlen[5] = (unsigned char)((ctx->sizeLo >> 16) & 255); | |
| 82 padlen[6] = (unsigned char)((ctx->sizeLo >> 8) & 255); | |
| 83 padlen[7] = (unsigned char)((ctx->sizeLo >> 0) & 255); | |
| 84 shaUpdate(ctx, &pad0x80, 1); | |
| 85 while (ctx->lenW != 56) | |
| 86 shaUpdate(ctx, &pad0x00, 1); | |
| 87 shaUpdate(ctx, padlen, 8); | |
| 88 | |
| 89 /* Output hash | |
| 90 */ | |
| 91 for (i = 0; i < 20; i++) { | |
| 92 hashout[i] = (unsigned char)(ctx->H[i / 4] >> 24); | |
| 93 ctx->H[i / 4] <<= 8; | |
| 94 } | |
| 95 | |
| 96 /* | |
| 97 * Re-initialize the context (also zeroizes contents) | |
| 98 */ | |
| 3127 | 99 shaInit(ctx); |
| 2086 | 100 } |
| 101 | |
| 102 | |
| 103 void shaBlock(unsigned char *dataIn, int len, unsigned char hashout[20]) { | |
| 3127 | 104 j_SHA_CTX ctx; |
| 2086 | 105 |
| 106 shaInit(&ctx); | |
| 107 shaUpdate(&ctx, dataIn, len); | |
| 108 shaFinal(&ctx, hashout); | |
| 109 } | |
| 110 | |
| 111 | |
| 3127 | 112 #define SHA_ROTL(X,n) ((((X) << (n)) | ((X) >> (32-(n)))) & 0xffffffffL) |
| 2086 | 113 |
| 3127 | 114 static void shaHashBlock(j_SHA_CTX *ctx) { |
| 2086 | 115 int t; |
| 116 unsigned long A,B,C,D,E,TEMP; | |
| 117 | |
| 118 for (t = 16; t <= 79; t++) | |
| 119 ctx->W[t] = | |
| 120 SHA_ROTL(ctx->W[t-3] ^ ctx->W[t-8] ^ ctx->W[t-14] ^ ctx->W[t-16], 1); | |
| 121 | |
| 122 A = ctx->H[0]; | |
| 123 B = ctx->H[1]; | |
| 124 C = ctx->H[2]; | |
| 125 D = ctx->H[3]; | |
| 126 E = ctx->H[4]; | |
| 127 | |
| 128 for (t = 0; t <= 19; t++) { | |
| 3127 | 129 TEMP = (SHA_ROTL(A,5) + (((C^D)&B)^D) + E + ctx->W[t] + 0x5a827999L) & 0xffffffffL; |
| 2086 | 130 E = D; D = C; C = SHA_ROTL(B, 30); B = A; A = TEMP; |
| 131 } | |
| 132 for (t = 20; t <= 39; t++) { | |
| 3127 | 133 TEMP = (SHA_ROTL(A,5) + (B^C^D) + E + ctx->W[t] + 0x6ed9eba1L) & 0xffffffffL; |
| 2086 | 134 E = D; D = C; C = SHA_ROTL(B, 30); B = A; A = TEMP; |
| 135 } | |
| 136 for (t = 40; t <= 59; t++) { | |
| 3127 | 137 TEMP = (SHA_ROTL(A,5) + ((B&C)|(D&(B|C))) + E + ctx->W[t] + 0x8f1bbcdcL) & 0xffffffffL; |
| 2086 | 138 E = D; D = C; C = SHA_ROTL(B, 30); B = A; A = TEMP; |
| 139 } | |
| 140 for (t = 60; t <= 79; t++) { | |
| 3127 | 141 TEMP = (SHA_ROTL(A,5) + (B^C^D) + E + ctx->W[t] + 0xca62c1d6L) & 0xffffffffL; |
| 2086 | 142 E = D; D = C; C = SHA_ROTL(B, 30); B = A; A = TEMP; |
| 143 } | |
| 144 | |
| 145 ctx->H[0] += A; | |
| 146 ctx->H[1] += B; | |
| 147 ctx->H[2] += C; | |
| 148 ctx->H[3] += D; | |
| 149 ctx->H[4] += E; | |
| 150 } | |
| 151 | |
| 152 /*---------------------------------------------------------------------------- | |
| 153 * | |
| 154 * This code added by Thomas "temas" Muldowney for Jabber compatability | |
| 155 * | |
| 156 *---------------------------------------------------------------------------*/ | |
| 157 char *shahash(char *str) | |
| 158 { | |
| 159 static char final[41]; | |
| 160 char *pos; | |
| 161 unsigned char hashval[20]; | |
| 162 int x; | |
| 163 | |
| 164 if(!str || strlen(str) == 0) | |
| 165 return NULL; | |
| 166 | |
| 167 shaBlock((unsigned char *)str, strlen(str), hashval); | |
| 168 | |
| 169 pos = final; | |
| 170 for(x=0;x<20;x++) | |
| 171 { | |
| 172 snprintf(pos, 3, "%02x", hashval[x]); | |
| 173 pos += 2; | |
| 174 } | |
| 175 return (char *)final; | |
| 176 } | |
| 177 | |
| 178 void shahash_r(const char* str, char hashbuf[41]) | |
| 179 { | |
| 180 int x; | |
| 181 char *pos; | |
| 182 unsigned char hashval[20]; | |
| 183 | |
| 184 if(!str || strlen(str) == 0) | |
| 185 return; | |
| 186 | |
| 187 shaBlock((unsigned char *)str, strlen(str), hashval); | |
| 188 | |
| 189 pos = hashbuf; | |
| 190 for(x=0;x<20;x++) | |
| 191 { | |
| 192 snprintf(pos, 3, "%02x", hashval[x]); | |
| 193 pos += 2; | |
| 194 } | |
| 195 | |
| 196 return; | |
| 197 } |
