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

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

?? bn_lib.c

?? LINUX AU12XX BOOTLADER
?? C
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
/* crypto/bn/bn_lib.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 <assert.h>#include <limits.h>#include <stdio.h>#include "cryptlib.h"#include "bn_lcl.h"#include "workaround.h"const char *BN_version = "Big Number" OPENSSL_VERSION_PTEXT;/* For a 32 bit machine * 2 -   4 ==  128 * 3 -   8 ==  256 * 4 -  16 ==  512 * 5 -  32 == 1024 * 6 -  64 == 2048 * 7 - 128 == 4096 * 8 - 256 == 8192 */static int bn_limit_bits = 0;static int bn_limit_num = 8;	/* (1<<bn_limit_bits) */static int bn_limit_bits_low = 0;static int bn_limit_num_low = 8;	/* (1<<bn_limit_bits_low) */static int bn_limit_bits_high = 0;static int bn_limit_num_high = 8;	/* (1<<bn_limit_bits_high) */static int bn_limit_bits_mont = 0;static int bn_limit_num_mont = 8;	/* (1<<bn_limit_bits_mont) */void BN_set_params(int mult, int high, int low, int mont){    if (mult >= 0) {	if (mult > (sizeof(int) * 8) - 1)	    mult = sizeof(int) * 8 - 1;	bn_limit_bits = mult;	bn_limit_num = 1 << mult;    }    if (high >= 0) {	if (high > (sizeof(int) * 8) - 1)	    high = sizeof(int) * 8 - 1;	bn_limit_bits_high = high;	bn_limit_num_high = 1 << high;    }    if (low >= 0) {	if (low > (sizeof(int) * 8) - 1)	    low = sizeof(int) * 8 - 1;	bn_limit_bits_low = low;	bn_limit_num_low = 1 << low;    }    if (mont >= 0) {	if (mont > (sizeof(int) * 8) - 1)	    mont = sizeof(int) * 8 - 1;	bn_limit_bits_mont = mont;	bn_limit_num_mont = 1 << mont;    }}int BN_get_params(int which){    if (which == 0)	return (bn_limit_bits);    else if (which == 1)	return (bn_limit_bits_high);    else if (which == 2)	return (bn_limit_bits_low);    else if (which == 3)	return (bn_limit_bits_mont);    else	return (0);}BIGNUM *BN_value_one(void){    static BN_ULONG data_one = 1L;    static BIGNUM const_one = { &data_one, 1, 1, 0 };    return (&const_one);}char *BN_options(void){    static int init = 0;    static char data[16];    if (!init) {	init++;#ifndef ROM_BASED#ifdef BN_LLONG	sprintf(data, "bn(%d,%d)", (int) sizeof(BN_ULLONG) * 8,		(int) sizeof(BN_ULONG) * 8);#else	sprintf(data, "bn(%d,%d)", (int) sizeof(BN_ULONG) * 8,		(int) sizeof(BN_ULONG) * 8);#endif#endif				//SECUREBOOT    }    return (data);}int BN_num_bits_word(BN_ULONG l){    static const char bits[256] = {	0, 1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4,	5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,	6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,	6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,	7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,	7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,	7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,	7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,	8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,	8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,	8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,	8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,	8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,	8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,	8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,	8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,    };#if defined(SIXTY_FOUR_BIT_LONG)    if (l & 0xffffffff00000000L) {	if (l & 0xffff000000000000L) {	    if (l & 0xff00000000000000L) {		return (bits[(int) (l >> 56)] + 56);	    } else		return (bits[(int) (l >> 48)] + 48);	} else {	    if (l & 0x0000ff0000000000L) {		return (bits[(int) (l >> 40)] + 40);	    } else		return (bits[(int) (l >> 32)] + 32);	}    } else#else#ifdef SIXTY_FOUR_BIT    if (l & 0xffffffff00000000LL) {	if (l & 0xffff000000000000LL) {	    if (l & 0xff00000000000000LL) {		return (bits[(int) (l >> 56)] + 56);	    } else		return (bits[(int) (l >> 48)] + 48);	} else {	    if (l & 0x0000ff0000000000LL) {		return (bits[(int) (l >> 40)] + 40);	    } else		return (bits[(int) (l >> 32)] + 32);	}    } else#endif#endif    {#if defined(THIRTY_TWO_BIT) || defined(SIXTY_FOUR_BIT) || defined(SIXTY_FOUR_BIT_LONG)	if (l & 0xffff0000L) {	    if (l & 0xff000000L)		return (bits[(int) (l >> 24L)] + 24);	    else		return (bits[(int) (l >> 16L)] + 16);	} else#endif	{#if defined(SIXTEEN_BIT) || defined(THIRTY_TWO_BIT) || defined(SIXTY_FOUR_BIT) || defined(SIXTY_FOUR_BIT_LONG)	    if (l & 0xff00L)		return (bits[(int) (l >> 8)] + 8);	    else#endif		return (bits[(int) (l)]);	}    }}int BN_num_bits(const BIGNUM * a){    BN_ULONG l;    int i;    bn_check_top(a);    if (a->top == 0)	return (0);    l = a->d[a->top - 1];    assert(l != 0);    i = (a->top - 1) * BN_BITS2;    return (i + BN_num_bits_word(l));}void BN_clear_free(BIGNUM * a){    int i;    if (a == NULL)	return;    if (a->d != NULL) {	memset(a->d, 0, a->dmax * sizeof(a->d[0]));	if (!(BN_get_flags(a, BN_FLG_STATIC_DATA)))	    OPENSSL_free(a->d);    }    i = BN_get_flags(a, BN_FLG_MALLOCED);    memset(a, 0, sizeof(BIGNUM));    if (i)	OPENSSL_free(a);}void BN_free(BIGNUM * a){    if (a == NULL)	return;    if ((a->d != NULL) && !(BN_get_flags(a, BN_FLG_STATIC_DATA)))	OPENSSL_free(a->d);    a->flags |= BN_FLG_FREE;	/* REMOVE? */    if (a->flags & BN_FLG_MALLOCED)	OPENSSL_free(a);}void BN_init(BIGNUM * a){    memset(a, 0, sizeof(BIGNUM));}BIGNUM *BN_new(void){    BIGNUM *ret;    if ((ret = (BIGNUM *) Our_malloc(sizeof(BIGNUM))) == NULL) {	BNerr(BN_F_BN_NEW, ERR_R_MALLOC_FAILURE);	return (NULL);    }    ret->flags = BN_FLG_MALLOCED;    ret->top = 0;    ret->neg = 0;    ret->dmax = 0;    ret->d = NULL;    return (ret);}/* This is an internal function that should not be used in applications. * It ensures that 'b' has enough room for a 'words' word number number. * It is mostly used by the various BIGNUM routines. If there is an error, * NULL is returned. If not, 'b' is returned. */BIGNUM *bn_expand2(BIGNUM * b, int words){    BN_ULONG *A, *a;    const BN_ULONG *B;    int i;    bn_check_top(b);    if (words > b->dmax) {	if (words > (INT_MAX / (4 * BN_BITS2))) {	    BNerr(BN_F_BN_EXPAND2, BN_R_BIGNUM_TOO_LONG);	    return NULL;	}	bn_check_top(b);	if (BN_get_flags(b, BN_FLG_STATIC_DATA)) {	    BNerr(BN_F_BN_EXPAND2, BN_R_EXPAND_ON_STATIC_BIGNUM_DATA);	    return (NULL);	}	a = A = (BN_ULONG *) Our_malloc(sizeof(BN_ULONG) * (words + 1));	if (A == NULL) {	    BNerr(BN_F_BN_EXPAND2, ERR_R_MALLOC_FAILURE);	    return (NULL);	}#if 1	B = b->d;	/* Check if the previous number needs to be copied */	if (B != NULL) {#if 0	    /* This lot is an unrolled loop to copy b->top	     * BN_ULONGs from B to A	     *//* * I have nothing against unrolling but it's usually done for * several reasons, namely: * - minimize percentage of decision making code, i.e. branches; * - avoid cache trashing; * - make it possible to schedule loads earlier; * Now let's examine the code below. The cornerstone of C is * "programmer is always right" and that's what we love it for:-) * For this very reason C compilers have to be paranoid when it * comes to data aliasing and assume the worst. Yeah, but what * does it mean in real life? This means that loop body below will * be compiled to sequence of loads immediately followed by stores * as compiler assumes the worst, something in A==B+1 style. As a * result CPU pipeline is going to starve for incoming data. Secondly * if A and B happen to share same cache line such code is going to * cause severe cache trashing. Both factors have severe impact on * performance of modern CPUs and this is the reason why this * particular piece of code is #ifdefed away and replaced by more * "friendly" version found in #else section below. This comment * also applies to BN_copy function. * *					<appro@fy.chalmers.se> */	    for (i = b->top & (~7); i > 0; i -= 8) {		A[0] = B[0];		A[1] = B[1];		A[2] = B[2];		A[3] = B[3];		A[4] = B[4];		A[5] = B[5];		A[6] = B[6];		A[7] = B[7];		A += 8;		B += 8;	    }	    switch (b->top & 7) {	    case 7:		A[6] = B[6];	    case 6:		A[5] = B[5];	    case 5:		A[4] = B[4];	    case 4:		A[3] = B[3];	    case 3:		A[2] = B[2];	    case 2:		A[1] = B[1];	    case 1:		A[0] = B[0];	    case 0:		/* I need the 'case 0' entry for utrix cc.		 * If the optimizer is turned on, it does the		 * switch table by doing		 * a=top&7		 * a--;		 * goto jump_table[a];		 * If top is 0, this makes us jump to 0xffffffc

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩一区二区三区四区五区六区 | 中文字幕在线一区免费| 一区二区三区欧美日韩| 国内不卡的二区三区中文字幕 | 在线视频你懂得一区| 精品成人一区二区三区| 亚洲国产成人av| www.日本不卡| 精品日韩99亚洲| 亚洲成在线观看| 91原创在线视频| 日本一区二区成人在线| 久久精品国产99| 欧美精品一级二级| 亚洲精品成a人| 成人午夜免费视频| 精品国产乱码久久久久久免费| 亚洲gay无套男同| 91精品1区2区| 亚洲人成在线播放网站岛国| 成人av免费观看| 国产精品网站在线播放| 国产一区二区三区免费观看| 91精品国产综合久久香蕉的特点 | 亚洲黄网站在线观看| 丁香婷婷综合网| 337p粉嫩大胆噜噜噜噜噜91av| 人人精品人人爱| 91精品国产综合久久久久久久 | 亚洲欧美日本韩国| voyeur盗摄精品| 国产色产综合产在线视频| 久久国产精品一区二区| 欧美一级国产精品| 久久精品国产久精国产爱| 91精品国产高清一区二区三区| 亚洲国产精品久久人人爱蜜臀 | 国产成人在线免费| 久久久午夜电影| 国产一本一道久久香蕉| 久久久久久综合| 国产精品一二三四| 国产午夜亚洲精品羞羞网站| 国产91在线|亚洲| 日本一区二区三区久久久久久久久不| 国产一区二区三区在线观看精品| 久久色在线观看| 国产99久久久国产精品免费看| 久久亚洲精品国产精品紫薇| 国产黄人亚洲片| 国产欧美一区二区三区沐欲| 成人丝袜18视频在线观看| 国产精品久久精品日日| 99re这里只有精品6| 一区二区国产盗摄色噜噜| 欧美亚洲动漫制服丝袜| 日韩精品视频网站| 日韩精品在线一区二区| 国产高清在线观看免费不卡| 中文在线一区二区| 色综合久久久久久久久久久| 亚洲乱码国产乱码精品精的特点 | 欧洲生活片亚洲生活在线观看| 一区二区三区不卡视频在线观看| 日本乱人伦aⅴ精品| 香蕉久久一区二区不卡无毒影院| 欧美日本一道本| 理论电影国产精品| 日本一区免费视频| 在线一区二区三区四区五区| 视频一区二区中文字幕| 2欧美一区二区三区在线观看视频| 成人性生交大片免费看中文 | 精品国产凹凸成av人导航| 国产在线播放一区二区三区 | 欧美一卡二卡三卡| 国产一区二区三区黄视频| 国产精品嫩草99a| 一本到一区二区三区| 日日骚欧美日韩| 国产亚洲欧美日韩日本| 91麻豆文化传媒在线观看| 日韩精品色哟哟| 中文字幕欧美区| 欧美丝袜第三区| 久久成人综合网| 成人欧美一区二区三区白人 | 91国偷自产一区二区三区观看| 视频一区视频二区中文| 日本一区二区在线不卡| 欧美日韩三级视频| 国产成人一区在线| 午夜精品在线视频一区| 国产无遮挡一区二区三区毛片日本| 欧美综合久久久| 国产一区二区三区久久久| 亚洲午夜久久久久| 久久久精品中文字幕麻豆发布| 在线观看亚洲精品视频| 国产在线精品国自产拍免费| 一区二区三区免费在线观看| 精品福利在线导航| 在线观看www91| 国产91清纯白嫩初高中在线观看| 午夜精品福利一区二区蜜股av| 久久久久久久久蜜桃| 偷拍与自拍一区| 国产中文字幕精品| 精品乱人伦一区二区三区| 成人v精品蜜桃久久一区| 水野朝阳av一区二区三区| 国产精品少妇自拍| 日韩欧美中文一区| 欧美在线观看禁18| 成人免费福利片| 免费成人在线网站| 亚洲影院理伦片| 国产精品美女www爽爽爽| 精品成人一区二区三区四区| 欧美日韩另类国产亚洲欧美一级| 成人三级伦理片| 九色综合国产一区二区三区| 午夜成人在线视频| 亚洲精品老司机| 国产精品77777竹菊影视小说| 亚洲超碰精品一区二区| 亚洲日本va午夜在线影院| 久久久久久久综合日本| 精品卡一卡二卡三卡四在线| 91精品国产麻豆国产自产在线| 色视频欧美一区二区三区| 成人黄色777网| 国产成人综合视频| 国产一区二区剧情av在线| 久久爱另类一区二区小说| 亚洲成人资源网| 亚洲精品免费在线| 综合电影一区二区三区| 国产欧美1区2区3区| 国产日韩视频一区二区三区| 337p粉嫩大胆色噜噜噜噜亚洲 | av午夜一区麻豆| 九九视频精品免费| 麻豆成人久久精品二区三区小说| 污片在线观看一区二区| 亚洲成av人在线观看| 亚洲午夜一区二区| 亚洲午夜免费福利视频| 亚洲高清视频中文字幕| 亚洲午夜久久久久久久久电影网| 一区二区三区日韩精品视频| 一区二区三区精品在线观看| 亚洲日本免费电影| 亚洲激情自拍视频| 一区二区三区.www| 亚洲一区二区高清| 午夜精品一区在线观看| 亚洲超碰97人人做人人爱| 日韩中文字幕av电影| 日韩专区中文字幕一区二区| 视频一区在线播放| 麻豆精品视频在线观看视频| 久久99精品国产麻豆婷婷洗澡| 久久精品国产成人一区二区三区| 久久99精品视频| 国产麻豆午夜三级精品| 高清国产午夜精品久久久久久| 成人激情黄色小说| 99re6这里只有精品视频在线观看| 色综合一区二区| 欧美亚一区二区| 91精品国产全国免费观看| 精品成人免费观看| 中文成人av在线| 一区二区三区欧美激情| 无码av免费一区二区三区试看| 美女视频一区在线观看| 国产一区二区三区蝌蚪| 不卡一卡二卡三乱码免费网站| 91婷婷韩国欧美一区二区| 欧美综合在线视频| 欧美一区二区三区的| 久久久精品黄色| 综合电影一区二区三区 | 欧美激情在线看| 17c精品麻豆一区二区免费| 亚洲一区在线视频| 免费xxxx性欧美18vr| 国产在线观看一区二区| 91尤物视频在线观看| 4438x亚洲最大成人网| 久久久精品蜜桃| 一区二区三区资源| 免费在线观看成人| 成人av资源在线| 欧美区视频在线观看| 久久久久国产精品免费免费搜索| 亚洲视频中文字幕| 日本视频在线一区| 国产xxx精品视频大全|