| 
									
										
										
										
											2006-05-21 20:57:42 -07:00
										 |  |  | /* crc32hash.c - derived from linux/lib/crc32.c, GNU GPL v2 */ | 
					
						
							|  |  |  | /* Usage example:
 | 
					
						
							|  |  |  | $ ./crc32hash "Dual Speed" | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <ctype.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-22 16:43:42 -07:00
										 |  |  | static unsigned int crc32(unsigned char const *p, unsigned int len) | 
					
						
							| 
									
										
										
										
											2006-05-21 20:57:42 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	unsigned int crc = 0; | 
					
						
							|  |  |  | 	while (len--) { | 
					
						
							|  |  |  | 		crc ^= *p++; | 
					
						
							|  |  |  | 		for (i = 0; i < 8; i++) | 
					
						
							|  |  |  | 			crc = (crc >> 1) ^ ((crc & 1) ? 0xedb88320 : 0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return crc; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int main(int argc, char **argv) { | 
					
						
							|  |  |  | 	unsigned int result; | 
					
						
							|  |  |  | 	if (argc != 2) { | 
					
						
							|  |  |  | 		printf("no string passed as argument\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-08-12 15:09:08 -07:00
										 |  |  | 	result = crc32((unsigned char const *)argv[1], strlen(argv[1])); | 
					
						
							| 
									
										
										
										
											2006-05-21 20:57:42 -07:00
										 |  |  | 	printf("0x%x\n", result); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } |