blob: 1de61c40f5f6d7784f381cd89450d3fe8792a0dd [file] [log] [blame]
Guido van Rossum29d2acc1999-03-24 19:03:59 +00001/* SHA module */
2
3/* This module provides an interface to NIST's Secure Hash Algorithm */
4
5/* See below for information about the original code this module was
6 based upon. Additional work performed by:
7
Andrew M. Kuchling3adefcc2002-10-30 21:08:34 +00008 Andrew Kuchling (amk@amk.ca)
Guido van Rossum29d2acc1999-03-24 19:03:59 +00009 Greg Stein (gstein@lyra.org)
Gregory P. Smithf21a5f72005-08-21 18:45:59 +000010
11 Copyright (C) 2005 Gregory P. Smith (greg@electricrain.com)
12 Licensed to PSF under a Contributor Agreement.
13
Guido van Rossum29d2acc1999-03-24 19:03:59 +000014*/
15
16/* SHA objects */
17
18#include "Python.h"
Gregory P. Smithf21a5f72005-08-21 18:45:59 +000019#include "structmember.h"
Guido van Rossum29d2acc1999-03-24 19:03:59 +000020
21
22/* Endianness testing and definitions */
23#define TestEndianness(variable) {int i=1; variable=PCT_BIG_ENDIAN;\
24 if (*((char*)&i)==1) variable=PCT_LITTLE_ENDIAN;}
25
26#define PCT_LITTLE_ENDIAN 1
27#define PCT_BIG_ENDIAN 0
28
29/* Some useful types */
30
31typedef unsigned char SHA_BYTE;
32
33#if SIZEOF_INT == 4
34typedef unsigned int SHA_INT32; /* 32-bit integer */
35#else
36/* not defined. compilation will die. */
37#endif
38
39/* The SHA block size and message digest sizes, in bytes */
40
41#define SHA_BLOCKSIZE 64
42#define SHA_DIGESTSIZE 20
43
44/* The structure for storing SHS info */
45
46typedef struct {
Fred Drake2c4a3dc2000-07-08 06:41:03 +000047 PyObject_HEAD
48 SHA_INT32 digest[5]; /* Message digest */
49 SHA_INT32 count_lo, count_hi; /* 64-bit bit count */
50 SHA_BYTE data[SHA_BLOCKSIZE]; /* SHA data buffer */
51 int Endianness;
52 int local; /* unprocessed amount in data */
Guido van Rossum29d2acc1999-03-24 19:03:59 +000053} SHAobject;
54
55/* When run on a little-endian CPU we need to perform byte reversal on an
56 array of longwords. */
57
Fred Drake2c4a3dc2000-07-08 06:41:03 +000058static void longReverse(SHA_INT32 *buffer, int byteCount, int Endianness)
Guido van Rossum29d2acc1999-03-24 19:03:59 +000059{
60 SHA_INT32 value;
61
62 if ( Endianness == PCT_BIG_ENDIAN )
63 return;
64
65 byteCount /= sizeof(*buffer);
Fred Drake2c4a3dc2000-07-08 06:41:03 +000066 while (byteCount--) {
Guido van Rossum29d2acc1999-03-24 19:03:59 +000067 value = *buffer;
68 value = ( ( value & 0xFF00FF00L ) >> 8 ) | \
69 ( ( value & 0x00FF00FFL ) << 8 );
70 *buffer++ = ( value << 16 ) | ( value >> 16 );
71 }
72}
73
Fred Drake2c4a3dc2000-07-08 06:41:03 +000074static void SHAcopy(SHAobject *src, SHAobject *dest)
Guido van Rossum29d2acc1999-03-24 19:03:59 +000075{
Fred Drake2c4a3dc2000-07-08 06:41:03 +000076 dest->Endianness = src->Endianness;
77 dest->local = src->local;
78 dest->count_lo = src->count_lo;
79 dest->count_hi = src->count_hi;
80 memcpy(dest->digest, src->digest, sizeof(src->digest));
81 memcpy(dest->data, src->data, sizeof(src->data));
Guido van Rossum29d2acc1999-03-24 19:03:59 +000082}
83
84
85/* ------------------------------------------------------------------------
86 *
87 * This code for the SHA algorithm was noted as public domain. The original
88 * headers are pasted below.
89 *
90 * Several changes have been made to make it more compatible with the
91 * Python environment and desired interface.
92 *
93 */
94
95/* NIST Secure Hash Algorithm */
96/* heavily modified by Uwe Hollerbach <uh@alumni.caltech edu> */
97/* from Peter C. Gutmann's implementation as found in */
98/* Applied Cryptography by Bruce Schneier */
99/* Further modifications to include the "UNRAVEL" stuff, below */
100
101/* This code is in the public domain */
102
103/* UNRAVEL should be fastest & biggest */
104/* UNROLL_LOOPS should be just as big, but slightly slower */
105/* both undefined should be smallest and slowest */
106
107#define UNRAVEL
108/* #define UNROLL_LOOPS */
109
110/* The SHA f()-functions. The f1 and f3 functions can be optimized to
111 save one boolean operation each - thanks to Rich Schroeppel,
112 rcs@cs.arizona.edu for discovering this */
113
114/*#define f1(x,y,z) ((x & y) | (~x & z)) // Rounds 0-19 */
115#define f1(x,y,z) (z ^ (x & (y ^ z))) /* Rounds 0-19 */
116#define f2(x,y,z) (x ^ y ^ z) /* Rounds 20-39 */
117/*#define f3(x,y,z) ((x & y) | (x & z) | (y & z)) // Rounds 40-59 */
118#define f3(x,y,z) ((x & y) | (z & (x | y))) /* Rounds 40-59 */
119#define f4(x,y,z) (x ^ y ^ z) /* Rounds 60-79 */
120
121/* SHA constants */
122
123#define CONST1 0x5a827999L /* Rounds 0-19 */
124#define CONST2 0x6ed9eba1L /* Rounds 20-39 */
125#define CONST3 0x8f1bbcdcL /* Rounds 40-59 */
126#define CONST4 0xca62c1d6L /* Rounds 60-79 */
127
128/* 32-bit rotate */
129
130#define R32(x,n) ((x << n) | (x >> (32 - n)))
131
132/* the generic case, for when the overall rotation is not unraveled */
133
134#define FG(n) \
135 T = R32(A,5) + f##n(B,C,D) + E + *WP++ + CONST##n; \
136 E = D; D = C; C = R32(B,30); B = A; A = T
137
138/* specific cases, for when the overall rotation is unraveled */
139
140#define FA(n) \
141 T = R32(A,5) + f##n(B,C,D) + E + *WP++ + CONST##n; B = R32(B,30)
142
143#define FB(n) \
144 E = R32(T,5) + f##n(A,B,C) + D + *WP++ + CONST##n; A = R32(A,30)
145
146#define FC(n) \
147 D = R32(E,5) + f##n(T,A,B) + C + *WP++ + CONST##n; T = R32(T,30)
148
149#define FD(n) \
150 C = R32(D,5) + f##n(E,T,A) + B + *WP++ + CONST##n; E = R32(E,30)
151
152#define FE(n) \
153 B = R32(C,5) + f##n(D,E,T) + A + *WP++ + CONST##n; D = R32(D,30)
154
155#define FT(n) \
156 A = R32(B,5) + f##n(C,D,E) + T + *WP++ + CONST##n; C = R32(C,30)
157
158/* do SHA transformation */
159
160static void
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000161sha_transform(SHAobject *sha_info)
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000162{
163 int i;
164 SHA_INT32 T, A, B, C, D, E, W[80], *WP;
165
166 memcpy(W, sha_info->data, sizeof(sha_info->data));
Guido van Rossumff1ccbf1999-04-10 15:48:23 +0000167 longReverse(W, (int)sizeof(sha_info->data), sha_info->Endianness);
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000168
169 for (i = 16; i < 80; ++i) {
170 W[i] = W[i-3] ^ W[i-8] ^ W[i-14] ^ W[i-16];
171
172 /* extra rotation fix */
173 W[i] = R32(W[i], 1);
174 }
175 A = sha_info->digest[0];
176 B = sha_info->digest[1];
177 C = sha_info->digest[2];
178 D = sha_info->digest[3];
179 E = sha_info->digest[4];
180 WP = W;
181#ifdef UNRAVEL
182 FA(1); FB(1); FC(1); FD(1); FE(1); FT(1); FA(1); FB(1); FC(1); FD(1);
183 FE(1); FT(1); FA(1); FB(1); FC(1); FD(1); FE(1); FT(1); FA(1); FB(1);
184 FC(2); FD(2); FE(2); FT(2); FA(2); FB(2); FC(2); FD(2); FE(2); FT(2);
185 FA(2); FB(2); FC(2); FD(2); FE(2); FT(2); FA(2); FB(2); FC(2); FD(2);
186 FE(3); FT(3); FA(3); FB(3); FC(3); FD(3); FE(3); FT(3); FA(3); FB(3);
187 FC(3); FD(3); FE(3); FT(3); FA(3); FB(3); FC(3); FD(3); FE(3); FT(3);
188 FA(4); FB(4); FC(4); FD(4); FE(4); FT(4); FA(4); FB(4); FC(4); FD(4);
189 FE(4); FT(4); FA(4); FB(4); FC(4); FD(4); FE(4); FT(4); FA(4); FB(4);
190 sha_info->digest[0] += E;
191 sha_info->digest[1] += T;
192 sha_info->digest[2] += A;
193 sha_info->digest[3] += B;
194 sha_info->digest[4] += C;
195#else /* !UNRAVEL */
196#ifdef UNROLL_LOOPS
197 FG(1); FG(1); FG(1); FG(1); FG(1); FG(1); FG(1); FG(1); FG(1); FG(1);
198 FG(1); FG(1); FG(1); FG(1); FG(1); FG(1); FG(1); FG(1); FG(1); FG(1);
199 FG(2); FG(2); FG(2); FG(2); FG(2); FG(2); FG(2); FG(2); FG(2); FG(2);
200 FG(2); FG(2); FG(2); FG(2); FG(2); FG(2); FG(2); FG(2); FG(2); FG(2);
201 FG(3); FG(3); FG(3); FG(3); FG(3); FG(3); FG(3); FG(3); FG(3); FG(3);
202 FG(3); FG(3); FG(3); FG(3); FG(3); FG(3); FG(3); FG(3); FG(3); FG(3);
203 FG(4); FG(4); FG(4); FG(4); FG(4); FG(4); FG(4); FG(4); FG(4); FG(4);
204 FG(4); FG(4); FG(4); FG(4); FG(4); FG(4); FG(4); FG(4); FG(4); FG(4);
205#else /* !UNROLL_LOOPS */
206 for (i = 0; i < 20; ++i) { FG(1); }
207 for (i = 20; i < 40; ++i) { FG(2); }
208 for (i = 40; i < 60; ++i) { FG(3); }
209 for (i = 60; i < 80; ++i) { FG(4); }
210#endif /* !UNROLL_LOOPS */
211 sha_info->digest[0] += A;
212 sha_info->digest[1] += B;
213 sha_info->digest[2] += C;
214 sha_info->digest[3] += D;
215 sha_info->digest[4] += E;
216#endif /* !UNRAVEL */
217}
218
219/* initialize the SHA digest */
220
221static void
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000222sha_init(SHAobject *sha_info)
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000223{
224 TestEndianness(sha_info->Endianness)
225
226 sha_info->digest[0] = 0x67452301L;
227 sha_info->digest[1] = 0xefcdab89L;
228 sha_info->digest[2] = 0x98badcfeL;
229 sha_info->digest[3] = 0x10325476L;
230 sha_info->digest[4] = 0xc3d2e1f0L;
231 sha_info->count_lo = 0L;
232 sha_info->count_hi = 0L;
233 sha_info->local = 0;
234}
235
236/* update the SHA digest */
237
238static void
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000239sha_update(SHAobject *sha_info, SHA_BYTE *buffer, int count)
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000240{
241 int i;
242 SHA_INT32 clo;
243
244 clo = sha_info->count_lo + ((SHA_INT32) count << 3);
245 if (clo < sha_info->count_lo) {
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000246 ++sha_info->count_hi;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000247 }
248 sha_info->count_lo = clo;
249 sha_info->count_hi += (SHA_INT32) count >> 29;
250 if (sha_info->local) {
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000251 i = SHA_BLOCKSIZE - sha_info->local;
252 if (i > count) {
253 i = count;
254 }
255 memcpy(((SHA_BYTE *) sha_info->data) + sha_info->local, buffer, i);
256 count -= i;
257 buffer += i;
258 sha_info->local += i;
259 if (sha_info->local == SHA_BLOCKSIZE) {
260 sha_transform(sha_info);
261 }
262 else {
263 return;
264 }
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000265 }
266 while (count >= SHA_BLOCKSIZE) {
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000267 memcpy(sha_info->data, buffer, SHA_BLOCKSIZE);
268 buffer += SHA_BLOCKSIZE;
269 count -= SHA_BLOCKSIZE;
270 sha_transform(sha_info);
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000271 }
272 memcpy(sha_info->data, buffer, count);
273 sha_info->local = count;
274}
275
276/* finish computing the SHA digest */
277
278static void
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000279sha_final(unsigned char digest[20], SHAobject *sha_info)
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000280{
281 int count;
282 SHA_INT32 lo_bit_count, hi_bit_count;
283
284 lo_bit_count = sha_info->count_lo;
285 hi_bit_count = sha_info->count_hi;
286 count = (int) ((lo_bit_count >> 3) & 0x3f);
287 ((SHA_BYTE *) sha_info->data)[count++] = 0x80;
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000288 if (count > SHA_BLOCKSIZE - 8) {
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000289 memset(((SHA_BYTE *) sha_info->data) + count, 0,
290 SHA_BLOCKSIZE - count);
291 sha_transform(sha_info);
292 memset((SHA_BYTE *) sha_info->data, 0, SHA_BLOCKSIZE - 8);
293 }
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000294 else {
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000295 memset(((SHA_BYTE *) sha_info->data) + count, 0,
296 SHA_BLOCKSIZE - 8 - count);
297 }
298
299 /* GJS: note that we add the hi/lo in big-endian. sha_transform will
300 swap these values into host-order. */
301 sha_info->data[56] = (hi_bit_count >> 24) & 0xff;
302 sha_info->data[57] = (hi_bit_count >> 16) & 0xff;
303 sha_info->data[58] = (hi_bit_count >> 8) & 0xff;
304 sha_info->data[59] = (hi_bit_count >> 0) & 0xff;
305 sha_info->data[60] = (lo_bit_count >> 24) & 0xff;
306 sha_info->data[61] = (lo_bit_count >> 16) & 0xff;
307 sha_info->data[62] = (lo_bit_count >> 8) & 0xff;
308 sha_info->data[63] = (lo_bit_count >> 0) & 0xff;
309 sha_transform(sha_info);
310 digest[ 0] = (unsigned char) ((sha_info->digest[0] >> 24) & 0xff);
311 digest[ 1] = (unsigned char) ((sha_info->digest[0] >> 16) & 0xff);
312 digest[ 2] = (unsigned char) ((sha_info->digest[0] >> 8) & 0xff);
313 digest[ 3] = (unsigned char) ((sha_info->digest[0] ) & 0xff);
314 digest[ 4] = (unsigned char) ((sha_info->digest[1] >> 24) & 0xff);
315 digest[ 5] = (unsigned char) ((sha_info->digest[1] >> 16) & 0xff);
316 digest[ 6] = (unsigned char) ((sha_info->digest[1] >> 8) & 0xff);
317 digest[ 7] = (unsigned char) ((sha_info->digest[1] ) & 0xff);
318 digest[ 8] = (unsigned char) ((sha_info->digest[2] >> 24) & 0xff);
319 digest[ 9] = (unsigned char) ((sha_info->digest[2] >> 16) & 0xff);
320 digest[10] = (unsigned char) ((sha_info->digest[2] >> 8) & 0xff);
321 digest[11] = (unsigned char) ((sha_info->digest[2] ) & 0xff);
322 digest[12] = (unsigned char) ((sha_info->digest[3] >> 24) & 0xff);
323 digest[13] = (unsigned char) ((sha_info->digest[3] >> 16) & 0xff);
324 digest[14] = (unsigned char) ((sha_info->digest[3] >> 8) & 0xff);
325 digest[15] = (unsigned char) ((sha_info->digest[3] ) & 0xff);
326 digest[16] = (unsigned char) ((sha_info->digest[4] >> 24) & 0xff);
327 digest[17] = (unsigned char) ((sha_info->digest[4] >> 16) & 0xff);
328 digest[18] = (unsigned char) ((sha_info->digest[4] >> 8) & 0xff);
329 digest[19] = (unsigned char) ((sha_info->digest[4] ) & 0xff);
330}
331
332/*
333 * End of copied SHA code.
334 *
335 * ------------------------------------------------------------------------
336 */
337
Jeremy Hylton938ace62002-07-17 16:30:39 +0000338static PyTypeObject SHAtype;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000339
340
341static SHAobject *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000342newSHAobject(void)
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000343{
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000344 return (SHAobject *)PyObject_New(SHAobject, &SHAtype);
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000345}
346
347/* Internal methods for a hashing object */
348
349static void
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000350SHA_dealloc(PyObject *ptr)
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000351{
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000352 PyObject_Del(ptr);
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000353}
354
355
356/* External methods for a hashing object */
357
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000358PyDoc_STRVAR(SHA_copy__doc__, "Return a copy of the hashing object.");
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000359
360static PyObject *
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000361SHA_copy(SHAobject *self, PyObject *args)
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000362{
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000363 SHAobject *newobj;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000364
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000365 if (!PyArg_ParseTuple(args, ":copy")) {
366 return NULL;
367 }
368 if ( (newobj = newSHAobject())==NULL)
369 return NULL;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000370
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000371 SHAcopy(self, newobj);
372 return (PyObject *)newobj;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000373}
374
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000375PyDoc_STRVAR(SHA_digest__doc__,
376"Return the digest value as a string of binary data.");
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000377
378static PyObject *
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000379SHA_digest(SHAobject *self, PyObject *args)
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000380{
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000381 unsigned char digest[SHA_DIGESTSIZE];
382 SHAobject temp;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000383
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000384 if (!PyArg_ParseTuple(args, ":digest"))
385 return NULL;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000386
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000387 SHAcopy(self, &temp);
388 sha_final(digest, &temp);
389 return PyString_FromStringAndSize((const char *)digest, sizeof(digest));
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000390}
391
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000392PyDoc_STRVAR(SHA_hexdigest__doc__,
393"Return the digest value as a string of hexadecimal digits.");
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000394
395static PyObject *
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000396SHA_hexdigest(SHAobject *self, PyObject *args)
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000397{
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000398 unsigned char digest[SHA_DIGESTSIZE];
399 SHAobject temp;
400 PyObject *retval;
401 char *hex_digest;
402 int i, j;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000403
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000404 if (!PyArg_ParseTuple(args, ":hexdigest"))
405 return NULL;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000406
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000407 /* Get the raw (binary) digest value */
408 SHAcopy(self, &temp);
409 sha_final(digest, &temp);
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000410
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000411 /* Create a new string */
412 retval = PyString_FromStringAndSize(NULL, sizeof(digest) * 2);
Barry Warsaw57b808d2000-08-15 06:03:35 +0000413 if (!retval)
414 return NULL;
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000415 hex_digest = PyString_AsString(retval);
Barry Warsaw57b808d2000-08-15 06:03:35 +0000416 if (!hex_digest) {
417 Py_DECREF(retval);
418 return NULL;
419 }
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000420
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000421 /* Make hex version of the digest */
422 for(i=j=0; i<sizeof(digest); i++) {
423 char c;
Barry Warsaw57b808d2000-08-15 06:03:35 +0000424 c = (digest[i] >> 4) & 0xf;
425 c = (c>9) ? c+'a'-10 : c + '0';
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000426 hex_digest[j++] = c;
Barry Warsaw57b808d2000-08-15 06:03:35 +0000427 c = (digest[i] & 0xf);
428 c = (c>9) ? c+'a'-10 : c + '0';
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000429 hex_digest[j++] = c;
430 }
431 return retval;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000432}
433
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000434PyDoc_STRVAR(SHA_update__doc__,
435"Update this hashing object's state with the provided string.");
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000436
437static PyObject *
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000438SHA_update(SHAobject *self, PyObject *args)
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000439{
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000440 unsigned char *cp;
441 int len;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000442
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000443 if (!PyArg_ParseTuple(args, "s#:update", &cp, &len))
444 return NULL;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000445
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000446 sha_update(self, cp, len);
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000447
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000448 Py_INCREF(Py_None);
449 return Py_None;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000450}
451
452static PyMethodDef SHA_methods[] = {
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000453 {"copy", (PyCFunction)SHA_copy, METH_VARARGS, SHA_copy__doc__},
454 {"digest", (PyCFunction)SHA_digest, METH_VARARGS, SHA_digest__doc__},
455 {"hexdigest", (PyCFunction)SHA_hexdigest, METH_VARARGS, SHA_hexdigest__doc__},
456 {"update", (PyCFunction)SHA_update, METH_VARARGS, SHA_update__doc__},
457 {NULL, NULL} /* sentinel */
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000458};
459
460static PyObject *
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000461SHA_get_block_size(PyObject *self, void *closure)
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000462{
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000463 return PyInt_FromLong(SHA_BLOCKSIZE);
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000464}
465
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000466static PyObject *
467SHA_get_digest_size(PyObject *self, void *closure)
468{
469 return PyInt_FromLong(SHA_DIGESTSIZE);
470}
471
472static PyObject *
473SHA_get_name(PyObject *self, void *closure)
474{
475 return PyString_FromStringAndSize("SHA1", 4);
476}
477
478static PyGetSetDef SHA_getseters[] = {
479 {"digest_size",
480 (getter)SHA_get_digest_size, NULL,
481 NULL,
482 NULL},
483 {"block_size",
484 (getter)SHA_get_block_size, NULL,
485 NULL,
486 NULL},
487 {"name",
488 (getter)SHA_get_name, NULL,
489 NULL,
490 NULL},
491 /* the old md5 and sha modules support 'digest_size' as in PEP 247.
492 * the old sha module also supported 'digestsize'. ugh. */
493 {"digestsize",
494 (getter)SHA_get_digest_size, NULL,
495 NULL,
496 NULL},
497 {NULL} /* Sentinel */
498};
499
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000500static PyTypeObject SHAtype = {
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000501 PyObject_HEAD_INIT(NULL)
502 0, /*ob_size*/
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000503 "_sha.sha", /*tp_name*/
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000504 sizeof(SHAobject), /*tp_size*/
505 0, /*tp_itemsize*/
506 /* methods */
507 SHA_dealloc, /*tp_dealloc*/
508 0, /*tp_print*/
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000509 0, /*tp_getattr*/
510 0, /*tp_setattr*/
511 0, /*tp_compare*/
512 0, /*tp_repr*/
513 0, /*tp_as_number*/
514 0, /*tp_as_sequence*/
515 0, /*tp_as_mapping*/
516 0, /*tp_hash*/
517 0, /*tp_call*/
518 0, /*tp_str*/
519 0, /*tp_getattro*/
520 0, /*tp_setattro*/
521 0, /*tp_as_buffer*/
522 Py_TPFLAGS_DEFAULT, /*tp_flags*/
523 0, /*tp_doc*/
524 0, /*tp_traverse*/
525 0, /*tp_clear*/
526 0, /*tp_richcompare*/
527 0, /*tp_weaklistoffset*/
528 0, /*tp_iter*/
529 0, /*tp_iternext*/
530 SHA_methods, /* tp_methods */
531 0, /* tp_members */
532 SHA_getseters, /* tp_getset */
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000533};
534
535
536/* The single module-level function: new() */
537
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000538PyDoc_STRVAR(SHA_new__doc__,
539"Return a new SHA hashing object. An optional string argument\n\
540may be provided; if present, this string will be automatically\n\
541hashed.");
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000542
543static PyObject *
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000544SHA_new(PyObject *self, PyObject *args, PyObject *kwdict)
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000545{
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000546 static char *kwlist[] = {"string", NULL};
547 SHAobject *new;
548 unsigned char *cp = NULL;
549 int len;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000550
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000551 if (!PyArg_ParseTupleAndKeywords(args, kwdict, "|s#:new", kwlist,
552 &cp, &len)) {
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000553 return NULL;
554 }
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000555
Jeremy Hylton55087f02001-01-29 22:46:35 +0000556 if ((new = newSHAobject()) == NULL)
557 return NULL;
558
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000559 sha_init(new);
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000560
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000561 if (PyErr_Occurred()) {
562 Py_DECREF(new);
563 return NULL;
564 }
565 if (cp)
566 sha_update(new, cp, len);
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000567
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000568 return (PyObject *)new;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000569}
570
571
572/* List of functions exported by this module */
573
574static struct PyMethodDef SHA_functions[] = {
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000575 {"new", (PyCFunction)SHA_new, METH_VARARGS|METH_KEYWORDS, SHA_new__doc__},
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000576 {NULL, NULL} /* Sentinel */
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000577};
578
579
580/* Initialize this module. */
581
Fred Drake8b14ac92001-11-02 22:04:17 +0000582#define insint(n,v) { PyModule_AddIntConstant(m,n,v); }
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000583
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000584PyMODINIT_FUNC
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000585init_sha(void)
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000586{
Fred Draked63e5042002-04-01 14:30:50 +0000587 PyObject *m;
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000588
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000589 SHAtype.ob_type = &PyType_Type;
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000590 if (PyType_Ready(&SHAtype) < 0)
591 return;
592 m = Py_InitModule("_sha", SHA_functions);
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000593
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000594 /* Add some symbolic constants to the module */
Fred Drake2c4a3dc2000-07-08 06:41:03 +0000595 insint("blocksize", 1); /* For future use, in case some hash
596 functions require an integral number of
597 blocks */
598 insint("digestsize", 20);
Andrew M. Kuchling75fec2c2001-11-02 21:41:00 +0000599 insint("digest_size", 20);
Guido van Rossum29d2acc1999-03-24 19:03:59 +0000600}