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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? bn_asm.c

?? OpenSSL 0.9.8k 最新版OpenSSL
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* crypto/bn/bn_asm.c *//* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. *  * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to.  The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code.  The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). *  * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. *  * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software *    must display the following acknowledgement: *    "This product includes cryptographic software written by *     Eric Young (eay@cryptsoft.com)" *    The word 'cryptographic' can be left out if the rouines from the library *    being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from  *    the apps directory (application code) you must include an acknowledgement: *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" *  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. *  * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed.  i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */#ifndef BN_DEBUG# undef NDEBUG /* avoid conflicting definitions */# define NDEBUG#endif#include <stdio.h>#include <assert.h>#include "cryptlib.h"#include "bn_lcl.h"#if defined(BN_LLONG) || defined(BN_UMULT_HIGH)BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)	{	BN_ULONG c1=0;	assert(num >= 0);	if (num <= 0) return(c1);	while (num&~3)		{		mul_add(rp[0],ap[0],w,c1);		mul_add(rp[1],ap[1],w,c1);		mul_add(rp[2],ap[2],w,c1);		mul_add(rp[3],ap[3],w,c1);		ap+=4; rp+=4; num-=4;		}	if (num)		{		mul_add(rp[0],ap[0],w,c1); if (--num==0) return c1;		mul_add(rp[1],ap[1],w,c1); if (--num==0) return c1;		mul_add(rp[2],ap[2],w,c1); return c1;		}		return(c1);	} BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)	{	BN_ULONG c1=0;	assert(num >= 0);	if (num <= 0) return(c1);	while (num&~3)		{		mul(rp[0],ap[0],w,c1);		mul(rp[1],ap[1],w,c1);		mul(rp[2],ap[2],w,c1);		mul(rp[3],ap[3],w,c1);		ap+=4; rp+=4; num-=4;		}	if (num)		{		mul(rp[0],ap[0],w,c1); if (--num == 0) return c1;		mul(rp[1],ap[1],w,c1); if (--num == 0) return c1;		mul(rp[2],ap[2],w,c1);		}	return(c1);	} void bn_sqr_words(BN_ULONG *r, const BN_ULONG *a, int n)        {	assert(n >= 0);	if (n <= 0) return;	while (n&~3)		{		sqr(r[0],r[1],a[0]);		sqr(r[2],r[3],a[1]);		sqr(r[4],r[5],a[2]);		sqr(r[6],r[7],a[3]);		a+=4; r+=8; n-=4;		}	if (n)		{		sqr(r[0],r[1],a[0]); if (--n == 0) return;		sqr(r[2],r[3],a[1]); if (--n == 0) return;		sqr(r[4],r[5],a[2]);		}	}#else /* !(defined(BN_LLONG) || defined(BN_UMULT_HIGH)) */BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)	{	BN_ULONG c=0;	BN_ULONG bl,bh;	assert(num >= 0);	if (num <= 0) return((BN_ULONG)0);	bl=LBITS(w);	bh=HBITS(w);	for (;;)		{		mul_add(rp[0],ap[0],bl,bh,c);		if (--num == 0) break;		mul_add(rp[1],ap[1],bl,bh,c);		if (--num == 0) break;		mul_add(rp[2],ap[2],bl,bh,c);		if (--num == 0) break;		mul_add(rp[3],ap[3],bl,bh,c);		if (--num == 0) break;		ap+=4;		rp+=4;		}	return(c);	} BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)	{	BN_ULONG carry=0;	BN_ULONG bl,bh;	assert(num >= 0);	if (num <= 0) return((BN_ULONG)0);	bl=LBITS(w);	bh=HBITS(w);	for (;;)		{		mul(rp[0],ap[0],bl,bh,carry);		if (--num == 0) break;		mul(rp[1],ap[1],bl,bh,carry);		if (--num == 0) break;		mul(rp[2],ap[2],bl,bh,carry);		if (--num == 0) break;		mul(rp[3],ap[3],bl,bh,carry);		if (--num == 0) break;		ap+=4;		rp+=4;		}	return(carry);	} void bn_sqr_words(BN_ULONG *r, const BN_ULONG *a, int n)        {	assert(n >= 0);	if (n <= 0) return;	for (;;)		{		sqr64(r[0],r[1],a[0]);		if (--n == 0) break;		sqr64(r[2],r[3],a[1]);		if (--n == 0) break;		sqr64(r[4],r[5],a[2]);		if (--n == 0) break;		sqr64(r[6],r[7],a[3]);		if (--n == 0) break;		a+=4;		r+=8;		}	}#endif /* !(defined(BN_LLONG) || defined(BN_UMULT_HIGH)) */#if defined(BN_LLONG) && defined(BN_DIV2W)BN_ULONG bn_div_words(BN_ULONG h, BN_ULONG l, BN_ULONG d)	{	return((BN_ULONG)(((((BN_ULLONG)h)<<BN_BITS2)|l)/(BN_ULLONG)d));	}#else/* Divide h,l by d and return the result. *//* I need to test this some more :-( */BN_ULONG bn_div_words(BN_ULONG h, BN_ULONG l, BN_ULONG d)	{	BN_ULONG dh,dl,q,ret=0,th,tl,t;	int i,count=2;	if (d == 0) return(BN_MASK2);	i=BN_num_bits_word(d);	assert((i == BN_BITS2) || (h <= (BN_ULONG)1<<i));	i=BN_BITS2-i;	if (h >= d) h-=d;	if (i)		{		d<<=i;		h=(h<<i)|(l>>(BN_BITS2-i));		l<<=i;		}	dh=(d&BN_MASK2h)>>BN_BITS4;	dl=(d&BN_MASK2l);	for (;;)		{		if ((h>>BN_BITS4) == dh)			q=BN_MASK2l;		else			q=h/dh;		th=q*dh;		tl=dl*q;		for (;;)			{			t=h-th;			if ((t&BN_MASK2h) ||				((tl) <= (					(t<<BN_BITS4)|					((l&BN_MASK2h)>>BN_BITS4))))				break;			q--;			th-=dh;			tl-=dl;			}		t=(tl>>BN_BITS4);		tl=(tl<<BN_BITS4)&BN_MASK2h;		th+=t;		if (l < tl) th++;		l-=tl;		if (h < th)			{			h+=d;			q--;			}		h-=th;		if (--count == 0) break;		ret=q<<BN_BITS4;		h=((h<<BN_BITS4)|(l>>BN_BITS4))&BN_MASK2;		l=(l&BN_MASK2l)<<BN_BITS4;		}	ret|=q;	return(ret);	}#endif /* !defined(BN_LLONG) && defined(BN_DIV2W) */#ifdef BN_LLONGBN_ULONG bn_add_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, int n)        {	BN_ULLONG ll=0;	assert(n >= 0);	if (n <= 0) return((BN_ULONG)0);	for (;;)		{		ll+=(BN_ULLONG)a[0]+b[0];		r[0]=(BN_ULONG)ll&BN_MASK2;		ll>>=BN_BITS2;		if (--n <= 0) break;		ll+=(BN_ULLONG)a[1]+b[1];		r[1]=(BN_ULONG)ll&BN_MASK2;		ll>>=BN_BITS2;		if (--n <= 0) break;		ll+=(BN_ULLONG)a[2]+b[2];		r[2]=(BN_ULONG)ll&BN_MASK2;		ll>>=BN_BITS2;		if (--n <= 0) break;		ll+=(BN_ULLONG)a[3]+b[3];		r[3]=(BN_ULONG)ll&BN_MASK2;		ll>>=BN_BITS2;		if (--n <= 0) break;		a+=4;		b+=4;		r+=4;		}	return((BN_ULONG)ll);	}#else /* !BN_LLONG */BN_ULONG bn_add_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, int n)        {	BN_ULONG c,l,t;	assert(n >= 0);	if (n <= 0) return((BN_ULONG)0);	c=0;	for (;;)		{		t=a[0];		t=(t+c)&BN_MASK2;		c=(t < c);		l=(t+b[0])&BN_MASK2;		c+=(l < t);		r[0]=l;		if (--n <= 0) break;		t=a[1];		t=(t+c)&BN_MASK2;		c=(t < c);		l=(t+b[1])&BN_MASK2;		c+=(l < t);		r[1]=l;		if (--n <= 0) break;		t=a[2];		t=(t+c)&BN_MASK2;		c=(t < c);		l=(t+b[2])&BN_MASK2;		c+=(l < t);		r[2]=l;		if (--n <= 0) break;		t=a[3];		t=(t+c)&BN_MASK2;		c=(t < c);		l=(t+b[3])&BN_MASK2;		c+=(l < t);		r[3]=l;		if (--n <= 0) break;		a+=4;		b+=4;		r+=4;		}	return((BN_ULONG)c);	}#endif /* !BN_LLONG */BN_ULONG bn_sub_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, int n)        {	BN_ULONG t1,t2;	int c=0;	assert(n >= 0);	if (n <= 0) return((BN_ULONG)0);	for (;;)		{		t1=a[0]; t2=b[0];		r[0]=(t1-t2-c)&BN_MASK2;		if (t1 != t2) c=(t1 < t2);		if (--n <= 0) break;		t1=a[1]; t2=b[1];		r[1]=(t1-t2-c)&BN_MASK2;		if (t1 != t2) c=(t1 < t2);		if (--n <= 0) break;		t1=a[2]; t2=b[2];		r[2]=(t1-t2-c)&BN_MASK2;		if (t1 != t2) c=(t1 < t2);		if (--n <= 0) break;		t1=a[3]; t2=b[3];		r[3]=(t1-t2-c)&BN_MASK2;		if (t1 != t2) c=(t1 < t2);		if (--n <= 0) break;		a+=4;		b+=4;		r+=4;		}	return(c);	}#ifdef BN_MUL_COMBA#undef bn_mul_comba8#undef bn_mul_comba4#undef bn_sqr_comba8#undef bn_sqr_comba4/* mul_add_c(a,b,c0,c1,c2)  -- c+=a*b for three word number c=(c2,c1,c0) *//* mul_add_c2(a,b,c0,c1,c2) -- c+=2*a*b for three word number c=(c2,c1,c0) *//* sqr_add_c(a,i,c0,c1,c2)  -- c+=a[i]^2 for three word number c=(c2,c1,c0) */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品久久一区二区三区| jlzzjlzz国产精品久久| 日韩美一区二区三区| 老司机免费视频一区二区 | 亚洲一区二区在线免费看| 色婷婷精品大视频在线蜜桃视频| 亚洲永久精品大片| 日韩一级在线观看| 丁香六月综合激情| 亚洲精品欧美在线| 这里只有精品视频在线观看| 黑人精品欧美一区二区蜜桃| 国产精品婷婷午夜在线观看| 色婷婷亚洲一区二区三区| 亚洲成人免费影院| 久久久夜色精品亚洲| 色婷婷久久久综合中文字幕| 日韩精品一区第一页| 久久久99精品免费观看不卡| 色婷婷亚洲精品| 美女诱惑一区二区| 中文字幕va一区二区三区| 色婷婷狠狠综合| 看国产成人h片视频| 欧美国产一区视频在线观看| 欧美日韩大陆一区二区| 国产精品一区二区你懂的| 亚洲乱码国产乱码精品精可以看 | 青青国产91久久久久久| 国产欧美一区二区三区在线看蜜臀| 成a人片国产精品| 亚洲444eee在线观看| 国产婷婷色一区二区三区在线| 91在线视频观看| 蜜臀va亚洲va欧美va天堂| 国产精品久久久久久久蜜臀| 日韩一级大片在线观看| 91网上在线视频| 国产乱子伦视频一区二区三区 | 久久精品国产久精国产爱| 亚洲欧洲av另类| 精品嫩草影院久久| 欧洲日韩一区二区三区| 成人亚洲一区二区一| 美女mm1313爽爽久久久蜜臀| 亚洲精品欧美综合四区| 日本一区二区不卡视频| 日韩欧美国产一二三区| 色菇凉天天综合网| 国产91丝袜在线观看| 麻豆视频观看网址久久| 亚洲精品美国一| 欧美激情一区二区| 久久久亚洲综合| 精品国产免费一区二区三区四区| 欧美自拍偷拍午夜视频| 99精品久久免费看蜜臀剧情介绍| 国产成人午夜精品影院观看视频| 日本女人一区二区三区| 丝袜美腿亚洲一区| 性做久久久久久久免费看| 亚洲欧美区自拍先锋| ㊣最新国产の精品bt伙计久久| 久久精品人人做人人综合| 久久久精品免费免费| 精品国产成人系列| 欧美成人video| 精品国产乱码91久久久久久网站| 欧美一区永久视频免费观看| 欧美精品tushy高清| 欧美老人xxxx18| 欧美日韩精品系列| 337p亚洲精品色噜噜| 欧美久久久久免费| 欧美日韩国产成人在线免费| 欧美日韩免费视频| 欧美日韩精品欧美日韩精品一综合| 欧美在线观看视频一区二区| 欧美性videosxxxxx| 欧美日韩免费观看一区二区三区| 欧美三级在线看| 欧美一区二区三区公司| 日韩一区二区影院| 精品欧美乱码久久久久久1区2区| 亚洲精品一区二区三区福利| 久久先锋资源网| 日韩精品一区二区三区四区| 26uuu另类欧美| 国产欧美一区二区在线| 亚洲女女做受ⅹxx高潮| 五月天视频一区| 久久成人免费网| 国产成人午夜片在线观看高清观看| 粉嫩高潮美女一区二区三区| 99re这里都是精品| 欧美人妖巨大在线| 国产精品理伦片| 亚洲视频在线一区二区| 亚洲在线视频一区| 久久草av在线| 成人午夜电影久久影院| 日本久久精品电影| 欧美一二三四区在线| 2023国产精品| 亚洲乱码国产乱码精品精小说 | 日韩一区二区视频| 中文乱码免费一区二区| 亚洲一线二线三线视频| 日本欧美一区二区三区乱码 | 91蜜桃在线观看| 91精品国产综合久久福利| 国产亚洲欧洲997久久综合| 亚洲欧美日韩系列| 久久精品国产99国产精品| 99久久综合色| 日韩免费高清视频| 亚洲精品日日夜夜| 久久精品国产久精国产爱| 91亚洲午夜精品久久久久久| 欧美丰满一区二区免费视频| 中文一区二区完整视频在线观看| 亚洲图片欧美视频| 国产69精品久久777的优势| 欧美日韩极品在线观看一区| 久久久国产精品午夜一区ai换脸| 亚洲一区在线观看视频| 国产精品69久久久久水密桃| 欧美色图天堂网| 国产精品乱码久久久久久| 免费人成精品欧美精品| 一本到一区二区三区| 国产日产欧美一区二区视频| 丝袜诱惑制服诱惑色一区在线观看 | 欧美一区二区三区免费在线看 | 丁香亚洲综合激情啪啪综合| 67194成人在线观看| 亚洲欧美日韩久久| 成人免费高清视频| 欧美精品一区在线观看| 青青草91视频| 欧美在线免费视屏| 一区二区视频在线| av成人免费在线| 欧美激情综合五月色丁香| 免费成人在线观看视频| 欧美日韩久久久一区| 一区二区三区在线视频观看| 成人免费毛片aaaaa**| 久久久久久亚洲综合| 麻豆精品国产91久久久久久| 欧美高清dvd| 亚洲国产成人高清精品| 色美美综合视频| 亚洲欧美日韩在线播放| 97aⅴ精品视频一二三区| 国产精品网站在线| 大胆欧美人体老妇| 国产精品久久网站| 成人免费视频视频| 国产精品黄色在线观看| 国产91富婆露脸刺激对白| 国产婷婷色一区二区三区| 国产高清不卡二三区| 国产午夜精品一区二区三区嫩草| 国产精品夜夜嗨| 日本一区二区在线不卡| 成人sese在线| 亚洲欧美影音先锋| 一本一道久久a久久精品| 亚洲私人黄色宅男| 色婷婷久久久亚洲一区二区三区| 一区二区在线看| 9191国产精品| 日本 国产 欧美色综合| 日韩三级视频中文字幕| 狠狠狠色丁香婷婷综合久久五月| 久久综合色8888| 波多野结衣视频一区| 悠悠色在线精品| 5月丁香婷婷综合| 久久91精品久久久久久秒播| 久久综合色天天久久综合图片| 国产乱码精品一区二区三区忘忧草| 国产欧美日韩不卡| 欧美综合视频在线观看| 三级久久三级久久| 久久欧美中文字幕| 91小视频免费看| 日本aⅴ精品一区二区三区| 久久久久综合网| 91丨porny丨最新| 日韩精品乱码免费| 久久久久国产精品人| 色婷婷久久久久swag精品| 日本特黄久久久高潮| 国产精品全国免费观看高清| 欧美日韩情趣电影| 国产成人精品影视| 天天综合天天综合色| 国产精品妹子av|