亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? md5.c

?? 這個vivi的功能很豐富
?? C
字號:
/*   md5.h - Declaration of functions and data types used for MD5 sum   computing library functions.   Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc.   NOTE: The canonical source of this file is maintained with th GNU C   Library.  Bugs can be reported to bug-glibc@prep.ai.mit.edu.   This program is free software; you can redistribute it and/or modify it   under the terms of the GNU General Public License as published by the   Free Software Foundation; either version 2, or (at your option) any   later version.   This program is distributed in the hope that it will be useful,   but WITHOUT ANY WARRANTY; without even the implied warranty of   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   GNU General Public License for more details.   You should have received a copy of the GNU General Public License   along with this program; if not, write to the Free Software Foundation,   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  *//* Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995. *//* Hacked to work with vivi by Janghoon Lyu <nandy@mizi.com>, 2002.  */#include <config.h>#include <machine.h>#include <md5.h>#include <command.h>#include <printk.h>#include <vivi_string.h>#include <string.h>#undef WORDS_BIGENDIAN#ifdef WORDS_BIGENDIAN# define SWAP(n) \	(((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24))#else# define SWAP(n) (n)#endif/* * This array contains the bytes used to pad the buffer to the next * 64-byte boundary. (RFC 1321, 3.1: Step 1)  */static const unsigned char fillbuf[64] = { 0x80, 0 /* , 0, 0, ... */ };/* * Initialize structure containig state of computation. * (RFC 1321, 3.3: Step 3) */voidmd5_init_ctx(struct md5_ctx *ctx){	ctx->A = 0x67452301;	ctx->B = 0xefcdab89;	ctx->C = 0x98badcfe;	ctx->D = 0x10325476;	ctx->total[0] = ctx->total[1] = 0;	ctx->buflen = 0;}/* * Put result from CTX in first 16 bytes following RESBUF. The result * must be in little endian byte order. * * IMPORTANT: On some systems it is required that RESBUF is correctly * aligned for a 32 bits value. */void *md5_read_ctx(const struct md5_ctx *ctx, void *resbuf){	((md5_uint32 *)resbuf)[0] = SWAP(ctx->A);	((md5_uint32 *)resbuf)[1] = SWAP(ctx->B);	((md5_uint32 *)resbuf)[2] = SWAP(ctx->C);	((md5_uint32 *)resbuf)[3] = SWAP(ctx->D);	return resbuf;}/* * Process the remaining bytes in the internal buffer and the usual * prolog according to the standard and write the result to RESBUF. * * IMPORTANT: On some systems it is required that RESBUF is correctly * aligned for a 32 bits value. */void *md5_finish_ctx(struct md5_ctx *ctx, void *resbuf){	/* Take yet unprocessed bytes into account. */	md5_uint32 bytes = ctx->buflen;	size_t pad;	/* Now count remaining bytes. */	ctx->total[0] += bytes;	if (ctx->total[0] < bytes)		++ctx->total[1];	pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;	memcpy(&ctx->buffer[bytes], fillbuf, pad);	/* Put the 64-bit file length in *bits* at the end of the buffer. */	*(md5_uint32 *)&ctx->buffer[bytes + pad] = SWAP(ctx->total[0] << 3);	*(md5_uint32 *)&ctx->buffer[bytes + pad + 4] = SWAP((ctx->total[1] << 3) |							    (ctx->total[0] >> 29));	/* Process last bytes. */	md5_process_block(ctx->buffer, bytes + pad + 8, ctx);	return md5_read_ctx(ctx, resbuf);}/* * Compute MD5 message digest for bytes read from STREAM. The * resulting message digest number will be written into the 16 bytes * beginning at RESBLOCK. */#if 0intmd5_stream(FILE *tream, void *resblock){	/* Important: BLOCKSIZE must be a multiple of 64. */#define BLOCKSIZE 4096	struct md5_ctx ctx;	char buffer[BLOCKSIZE + 72];	size_t sum;	/* Initialize the computation context. */	md5_init_ctx(&ctx);	/* Iterate over full file contents. */	while (1) {		/* 		 * We read the file in blocks of BLOCKSIZE bytes. One call of the		 * computation function processes the whole buffer so that with		 * the next round of the loop another block can be read.		 */		size_t n;		sum = 0;		/* Read block. Take care for partial reads. */		do {			n = fread(buffer + sum, 1, BLOCKSIZE - sum, stream);			sum += n;		} while (sum < BLOCKSIZE && n != 0);		if (n == 0 && ferror(stream))			return 1;		/* If end of file is reached, end the loop. */		if (n == 0)			break;		/*		 * Process buffer with BLOCKSIZE bytes. Note that		 * BLOCKSIZE % 64 == 0		 */		md5_process_block(buffer, BLOCKSIZE, &ctx);	}	/* Add the last bytes if necessary. */	if (sum > 0)		md5_process_bytes(buffer, sum, &ctx);	/* Construct result in desired memory. */	md5_finish_ctx(&ctx, resblock);	return 0;}#endif/* * Compute MD5 message digest for LEN bytes beginning at BUFFER. The * result is always in little endian order, so that a byte-wise * output yields to the wanted ASCII representation of the message * digest. */void *md5_buffer(const char *buffer, size_t len, void *resblock){	struct md5_ctx ctx;	/* Initialize the computation context. */	md5_init_ctx(&ctx);	/* Process whole buffer but last len % 64 bytes. */	md5_process_bytes(buffer, len, &ctx);	/* Put result in desried memory area. */	return md5_finish_ctx(&ctx, resblock);}voidmd5_process_bytes(const void *buffer, size_t len, struct md5_ctx *ctx){	/*	 * When we already have some bits in our internal buffer concatenate	 * both inputs first.	 */	if (ctx->buflen != 0) {		size_t left_over = ctx->buflen;		size_t add = 128 - left_over > len ? len : 128 - left_over;		memcpy(&ctx->buffer[left_over], buffer, add);		ctx->buflen += add;		if (left_over + add > 64) {			md5_process_block(ctx->buffer, (left_over + add) & ~63, ctx);			/* The regions in the following copy operation cannot overlab. */			memcpy(ctx->buffer, &ctx->buffer[(left_over + add) & ~63],				(left_over + add) & 63);			ctx->buflen = (left_over + add) & 63;		}		buffer = (const char *)buffer + add;		len -= add;	}	/* Process available complete blocks. */	if (len > 64) {		md5_process_block(buffer, len & ~63, ctx);		buffer = (const char *)buffer + (len & ~63);		len &= 63;	}	/* More remaining bytes in internal buffer. */	if (len > 0) {		memcpy(ctx->buffer, buffer, len);		ctx->buflen = len;	}}/*  * These are the four functions used in the four steps of the MD5 algorithm * and defined in the RFC 1321. The first function is a little bit optimized * (as found in Colin Plumbs public domain implementation).  *//* #define FF(b, c, d)	((b & c) | (~b & d)) */#define FF(b, c, d)	(d ^ (b & (c ^ d)))#define FG(b, c, d)	FF(d, b, c)#define FH(b, c, d)	(b ^ c ^ d)#define FI(b, c, d)	(c ^ (b | ~d))/* * Process LEN bytes of BUFFER, accumulating context into CTX. * It is assumed that LEN % 64 == 0. */voidmd5_process_block(const void *buffer, size_t len, struct md5_ctx *ctx){	md5_uint32 correct_words[16];	const md5_uint32 *words = buffer;	size_t nwords = len / sizeof(md5_uint32);	const md5_uint32 *endp = words + nwords;	md5_uint32 A = ctx->A;	md5_uint32 B = ctx->B;	md5_uint32 C = ctx->C;	md5_uint32 D = ctx->D;	/*	 * First increment the byte count. RFC 1321 specifies the possible	 * length of the file up to 2^64 bits. Here we only compute the	 * number of bytes. Do a double word increment	 */	ctx->total[0] += len;	if (ctx->total[0] < len)		++ctx->total[1];	/*	 * Process all bytes in the buffer with 64 bytes in each round of	 * the loop.	 */	while (words < endp) {		md5_uint32 *cwp = correct_words;		md5_uint32 A_save = A;		md5_uint32 B_save = B;		md5_uint32 C_save = C;		md5_uint32 D_save = D;		/*		 * First round: using the given function, the context and a constant		 * the next context is computed. Because the algorithms processing		 * unit is a 32-bit word and it is determinied to work on words in		 * little endian byte order we perhaps have to change the byte order		 * before the computation. To reduce the work for the next steps		 * we store the swapped words in the array CORRECT_WORDS.		 */#define OP(a, b, c, d, s, T)						\	do  {								\		a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T;	\		++words;						\		a = rol (a, s);						\		a += b;							\	} while (0)		/*		 * Before we start, one word to the strange constants.		 * They defined in RFC 1321 as		 *		 * T[i] = (int) (4294967296.0 * fabs (sin (i))), i=1..64, or		 * perl -e 'foreach(1..64){printf "0x%08x\n", int (4294967296 * abs (sin $_))}'		 */		/* Round 1.  */		OP(A, B, C, D,  7, 0xd76aa478);		OP(D, A, B, C, 12, 0xe8c7b756);		OP(C, D, A, B, 17, 0x242070db);		OP(B, C, D, A, 22, 0xc1bdceee);		OP(A, B, C, D,  7, 0xf57c0faf);		OP(D, A, B, C, 12, 0x4787c62a);		OP(C, D, A, B, 17, 0xa8304613);		OP(B, C, D, A, 22, 0xfd469501);		OP(A, B, C, D,  7, 0x698098d8);		OP(D, A, B, C, 12, 0x8b44f7af);		OP(C, D, A, B, 17, 0xffff5bb1);		OP(B, C, D, A, 22, 0x895cd7be);		OP(A, B, C, D,  7, 0x6b901122);		OP(D, A, B, C, 12, 0xfd987193);		OP(C, D, A, B, 17, 0xa679438e);		OP(B, C, D, A, 22, 0x49b40821);      /* For the second to fourth round we have the possibly swapped words         in CORRECT_WORDS.  Redefine the macro to take an additional first         argument specifying the function to use.  */#undef OP#define OP(f, a, b, c, d, k, s, T)				\	do {							\		a += f (b, c, d) + correct_words[k] + T;	\		a = rol (a, s);					\		a += b;						\        } while (0)		/* Round 2.  */		OP(FG, A, B, C, D,  1,  5, 0xf61e2562);		OP(FG, D, A, B, C,  6,  9, 0xc040b340);		OP(FG, C, D, A, B, 11, 14, 0x265e5a51);		OP(FG, B, C, D, A,  0, 20, 0xe9b6c7aa);		OP(FG, A, B, C, D,  5,  5, 0xd62f105d);		OP(FG, D, A, B, C, 10,  9, 0x02441453);		OP(FG, C, D, A, B, 15, 14, 0xd8a1e681);		OP(FG, B, C, D, A,  4, 20, 0xe7d3fbc8);		OP(FG, A, B, C, D,  9,  5, 0x21e1cde6);		OP(FG, D, A, B, C, 14,  9, 0xc33707d6);		OP(FG, C, D, A, B,  3, 14, 0xf4d50d87);		OP(FG, B, C, D, A,  8, 20, 0x455a14ed);		OP(FG, A, B, C, D, 13,  5, 0xa9e3e905);		OP(FG, D, A, B, C,  2,  9, 0xfcefa3f8);		OP(FG, C, D, A, B,  7, 14, 0x676f02d9);		OP(FG, B, C, D, A, 12, 20, 0x8d2a4c8a);		/* Round 3.  */		OP(FH, A, B, C, D,  5,  4, 0xfffa3942);		OP(FH, D, A, B, C,  8, 11, 0x8771f681);		OP(FH, C, D, A, B, 11, 16, 0x6d9d6122);		OP(FH, B, C, D, A, 14, 23, 0xfde5380c);		OP(FH, A, B, C, D,  1,  4, 0xa4beea44);		OP(FH, D, A, B, C,  4, 11, 0x4bdecfa9);		OP(FH, C, D, A, B,  7, 16, 0xf6bb4b60);		OP(FH, B, C, D, A, 10, 23, 0xbebfbc70);		OP(FH, A, B, C, D, 13,  4, 0x289b7ec6);		OP(FH, D, A, B, C,  0, 11, 0xeaa127fa);		OP(FH, C, D, A, B,  3, 16, 0xd4ef3085);		OP(FH, B, C, D, A,  6, 23, 0x04881d05);		OP(FH, A, B, C, D,  9,  4, 0xd9d4d039);		OP(FH, D, A, B, C, 12, 11, 0xe6db99e5);		OP(FH, C, D, A, B, 15, 16, 0x1fa27cf8);		OP(FH, B, C, D, A,  2, 23, 0xc4ac5665);		/* Round 4.  */		OP(FI, A, B, C, D,  0,  6, 0xf4292244);		OP(FI, D, A, B, C,  7, 10, 0x432aff97);		OP(FI, C, D, A, B, 14, 15, 0xab9423a7);		OP(FI, B, C, D, A,  5, 21, 0xfc93a039);		OP(FI, A, B, C, D, 12,  6, 0x655b59c3);		OP(FI, D, A, B, C,  3, 10, 0x8f0ccc92);		OP(FI, C, D, A, B, 10, 15, 0xffeff47d);		OP(FI, B, C, D, A,  1, 21, 0x85845dd1);		OP(FI, A, B, C, D,  8,  6, 0x6fa87e4f);		OP(FI, D, A, B, C, 15, 10, 0xfe2ce6e0);		OP(FI, C, D, A, B,  6, 15, 0xa3014314);		OP(FI, B, C, D, A, 13, 21, 0x4e0811a1);		OP(FI, A, B, C, D,  4,  6, 0xf7537e82);		OP(FI, D, A, B, C, 11, 10, 0xbd3af235);		OP(FI, C, D, A, B,  2, 15, 0x2ad7d2bb);		OP(FI, B, C, D, A,  9, 21, 0xeb86d391);		/* Add the starting values of the context.  */		A += A_save;		B += B_save;		C += C_save;		D += D_save;	}	/* Put checksum in context given as argument.  */	ctx->A = A;	ctx->B = B;	ctx->C = C;	ctx->D = D;}/* * for vivi */intmd5_buffer_stream(const char *buffer, size_t len, void *resblock){/* Important: BLOCKSIZE must be a multiple of 64. */#define TMP_BUF_SIZE 4096	struct md5_ctx ctx;	char tmp_buffer[TMP_BUF_SIZE + 72];	size_t sum = 0;	md5_init_ctx(&ctx);	while (1) {		if (len < TMP_BUF_SIZE)			break;		memcpy(tmp_buffer, buffer + sum, TMP_BUF_SIZE);		md5_process_block(tmp_buffer, TMP_BUF_SIZE, &ctx);		sum += TMP_BUF_SIZE;		len -= TMP_BUF_SIZE;	}	if (len > 0)  {		memcpy(tmp_buffer, buffer + sum, len);		md5_process_bytes(tmp_buffer, len, &ctx);	}	md5_finish_ctx(&ctx, resblock);	return 0;}voidcheck_md5sum(const char *buf, size_t len, char *file_name){	unsigned char bin_buffer[16];	int cnt;	printk("MD5SUM:  ");	md5_buffer(buf, len, bin_buffer);	for (cnt = 0; cnt < 16; cnt++)		printk("%02x", bin_buffer[cnt]);	if (file_name != NULL)		printk("  %s", file_name);	printk("\n");}void command_md5sum(int argc, const char **argv){	size_t len;	char *buffer;	unsigned char resbuf[16];	int i;	if (argc != 3) {		printk("invalid 'sleep' command: too few(many) arguments\n");		return;	}	if (strncmp("downfile", argv[1], 8) == 0) {		buffer = (char *)RAM_BASE;	} else {		buffer = (char *)strtoul(argv[1], NULL, 0, NULL);	}	len = (size_t)strtoul(argv[2], NULL, 0, NULL);	printk("address = 0x%x, size = %d bytes\n", buffer, len);	md5_buffer(buffer, len, resbuf);	printk("MD5SUM:  ");	for (i = 0; i < 16; i++)		printk("%02x", resbuf[i]);	printk("\n");}user_command_t md5sum_cmd = {	"md5sum",	command_md5sum,	NULL,	"md5sum <addr> <size> | downfile <size>\t-- Compute MD5"};

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品一区二区三区日韩| 国产精品久久三| 中文字幕 久热精品 视频在线| 国产精品沙发午睡系列990531| 一区二区免费看| 免费成人美女在线观看| 粉嫩嫩av羞羞动漫久久久| 91蜜桃免费观看视频| 91麻豆精品91久久久久久清纯 | 国产精品成人免费精品自在线观看| 亚洲精品ww久久久久久p站| 日韩不卡在线观看日韩不卡视频| 国产一区二区成人久久免费影院| 99久久综合色| 日韩欧美www| 亚洲美女屁股眼交| 国内外成人在线| 欧美在线999| 精品噜噜噜噜久久久久久久久试看 | 亚洲乱码国产乱码精品精的特点| 免费在线观看一区二区三区| 99久久久无码国产精品| 日韩欧美久久久| 亚洲精品乱码久久久久久黑人| 精彩视频一区二区三区| 一本到不卡免费一区二区| 欧美va日韩va| 亚洲成人一二三| 成人av网址在线| 精品久久五月天| 天天综合网 天天综合色| 99视频有精品| 久久精品一级爱片| 日产精品久久久久久久性色| 91美女片黄在线观看| 久久久久国产精品麻豆| 午夜精品久久久久久久蜜桃app| 成人一道本在线| 精品国产91久久久久久久妲己| 亚洲香蕉伊在人在线观| 不卡av电影在线播放| 久久蜜桃一区二区| 美女爽到高潮91| 51精品国自产在线| 亚洲综合一区二区精品导航| av在线不卡免费看| 久久久久久久久久久99999| 青青草国产成人av片免费| 一本久久a久久免费精品不卡| 欧美激情一区在线| 韩国av一区二区三区在线观看| 在线不卡中文字幕播放| 亚洲一区二区三区中文字幕在线| 99视频在线精品| 国产精品久久久久久久久快鸭 | 欧美一区二区三区四区在线观看 | 欧美日韩你懂得| 一区二区三区在线视频免费| jlzzjlzz亚洲女人18| 国产欧美一区二区精品性| 九九精品一区二区| 欧美成人性福生活免费看| 人人超碰91尤物精品国产| 欧美精品视频www在线观看| 亚洲一区二区三区在线看| 91成人国产精品| 亚洲精品欧美综合四区| 一本色道综合亚洲| 亚洲综合一区二区三区| 欧美三区免费完整视频在线观看| 亚洲一区二区三区视频在线播放 | 亚洲欧美国产三级| 91网站在线播放| ㊣最新国产の精品bt伙计久久| 暴力调教一区二区三区| 亚洲欧洲国产日韩| 91片在线免费观看| 亚洲一区二区三区精品在线| 欧美日韩中文另类| 丝袜美腿高跟呻吟高潮一区| 欧美日韩三级一区二区| 日本不卡的三区四区五区| 日韩欧美视频一区| 国产永久精品大片wwwapp| 久久婷婷色综合| 成人黄色片在线观看| 亚洲欧美日韩在线| 欧美日韩亚洲综合在线 | 91丨九色丨尤物| 一区二区三区四区不卡在线| 欧美视频完全免费看| 婷婷综合在线观看| 精品国产乱码久久久久久浪潮 | 久久婷婷国产综合国色天香| 国产精品亚洲一区二区三区妖精| 久久精品视频网| 91麻豆国产精品久久| 亚洲成av人片在线| 精品国产乱码久久久久久久 | 一区免费观看视频| 欧美羞羞免费网站| 久久国产欧美日韩精品| 中文字幕av一区二区三区高| 日本电影欧美片| 免费观看日韩电影| 中文字幕免费不卡| 在线欧美日韩精品| 久久国产日韩欧美精品| 国产精品久久久久久久岛一牛影视 | 久久精品一区二区三区不卡牛牛| 99久久99精品久久久久久| 亚洲成av人**亚洲成av**| 久久这里只有精品视频网| 99久久精品国产导航| 日韩电影在线免费看| 国产欧美精品一区二区色综合| 91久久精品一区二区二区| 久久国产三级精品| 亚洲天天做日日做天天谢日日欢| 337p亚洲精品色噜噜| 粉嫩av一区二区三区| 亚洲成av人**亚洲成av**| 国产清纯在线一区二区www| 欧美在线观看视频一区二区| 国产尤物一区二区在线| 一区二区三区美女视频| 久久影音资源网| 欧美午夜电影网| 国产成人免费视频网站| 偷拍一区二区三区四区| 国产欧美一区二区精品仙草咪| 911国产精品| 91香蕉视频污在线| 国产一区二区在线观看视频| 亚洲国产一区二区视频| 欧美国产97人人爽人人喊| 在线播放国产精品二区一二区四区 | 91精彩视频在线观看| 国产一区在线观看视频| 午夜不卡av免费| 亚洲欧洲美洲综合色网| 欧美精品一区二区精品网| 欧美性猛交xxxx黑人交| 成人激情文学综合网| 久久精品99久久久| 夜夜揉揉日日人人青青一国产精品| 久久久国产精品麻豆| 欧美日本韩国一区| 一本一本大道香蕉久在线精品| 国产精一区二区三区| 视频一区二区三区中文字幕| 亚洲男人天堂av| 欧美高清一级片在线观看| 日韩免费在线观看| 欧美欧美午夜aⅴ在线观看| 91免费观看国产| 成人高清伦理免费影院在线观看| 韩国女主播成人在线| 日韩福利视频导航| 午夜天堂影视香蕉久久| 亚洲精品ww久久久久久p站| 国产精品麻豆99久久久久久| 久久久精品综合| 欧美大片一区二区| 欧美一区二区三区四区久久| 欧美日韩精品免费| 欧美在线综合视频| 色国产综合视频| 99精品视频一区二区| 波多野结衣中文字幕一区二区三区| 国产高清精品久久久久| 国产中文字幕一区| 激情文学综合网| 国产一区欧美日韩| 国产自产v一区二区三区c| 激情综合五月天| 国产一区免费电影| 国产制服丝袜一区| 国产精品影音先锋| 国产成人亚洲精品青草天美| 国产美女一区二区三区| 国产一区二区精品久久91| 国产一区二区不卡在线| 国产福利不卡视频| 东方欧美亚洲色图在线| 不卡一区二区在线| 97久久超碰国产精品| 国产精品美女久久久久aⅴ | 国产在线日韩欧美| 国产综合色产在线精品| 国产精品1024| www..com久久爱| 色女孩综合影院| 欧美日本一道本在线视频| 日韩一区二区三区四区五区六区| 日韩一区二区在线免费观看| 亚洲精品一区二区三区蜜桃下载 | 成人免费视频视频在线观看免费| 国产69精品久久久久毛片| 99久久99久久精品免费看蜜桃|