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

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

?? ec.h

?? OpenSSL 0.9.8k 最新版OpenSSL
?? H
?? 第 1 頁 / 共 2 頁
字號:
/* crypto/ec/ec.h *//* * Originally written by Bodo Moeller for the OpenSSL project. *//* ==================================================================== * Copyright (c) 1998-2003 The OpenSSL Project.  All rights reserved. * * 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 above 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 acknowledgment: *    "This product includes software developed by the OpenSSL Project *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to *    endorse or promote products derived from this software without *    prior written permission. For written permission, please contact *    openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" *    nor may "OpenSSL" appear in their names without prior written *    permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following *    acknowledgment: *    "This product includes software developed by the OpenSSL Project *    for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED 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 OpenSSL PROJECT OR * ITS 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. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com).  This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * *//* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * * Portions of the attached software ("Contribution") are developed by  * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. * * The Contribution is licensed pursuant to the OpenSSL open source * license provided above. * * The elliptic curve binary polynomial software is originally written by  * Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories. * */#ifndef HEADER_EC_H#define HEADER_EC_H#include <openssl/opensslconf.h>#ifdef OPENSSL_NO_EC#error EC is disabled.#endif#include <openssl/asn1.h>#include <openssl/symhacks.h>#ifndef OPENSSL_NO_DEPRECATED#include <openssl/bn.h>#endif#ifdef  __cplusplusextern "C" {#elif defined(__SUNPRO_C)# if __SUNPRO_C >= 0x520# pragma error_messages (off,E_ARRAY_OF_INCOMPLETE_NONAME,E_ARRAY_OF_INCOMPLETE)# endif#endif#ifndef OPENSSL_ECC_MAX_FIELD_BITS# define OPENSSL_ECC_MAX_FIELD_BITS 661#endiftypedef enum {	/* values as defined in X9.62 (ECDSA) and elsewhere */	POINT_CONVERSION_COMPRESSED = 2,	POINT_CONVERSION_UNCOMPRESSED = 4,	POINT_CONVERSION_HYBRID = 6} point_conversion_form_t;typedef struct ec_method_st EC_METHOD;typedef struct ec_group_st	/*	 EC_METHOD *meth;	 -- field definition	 -- curve coefficients	 -- optional generator with associated information (order, cofactor)	 -- optional extra data (precomputed table for fast computation of multiples of generator)	 -- ASN1 stuff	*/	EC_GROUP;typedef struct ec_point_st EC_POINT;/* EC_METHODs for curves over GF(p). * EC_GFp_simple_method provides the basis for the optimized methods. */const EC_METHOD *EC_GFp_simple_method(void);const EC_METHOD *EC_GFp_mont_method(void);const EC_METHOD *EC_GFp_nist_method(void);/* EC_METHOD for curves over GF(2^m). */const EC_METHOD *EC_GF2m_simple_method(void);EC_GROUP *EC_GROUP_new(const EC_METHOD *);void EC_GROUP_free(EC_GROUP *);void EC_GROUP_clear_free(EC_GROUP *);int EC_GROUP_copy(EC_GROUP *, const EC_GROUP *);EC_GROUP *EC_GROUP_dup(const EC_GROUP *);const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *);int EC_METHOD_get_field_type(const EC_METHOD *);int EC_GROUP_set_generator(EC_GROUP *, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor);const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *);int EC_GROUP_get_order(const EC_GROUP *, BIGNUM *order, BN_CTX *);int EC_GROUP_get_cofactor(const EC_GROUP *, BIGNUM *cofactor, BN_CTX *);void EC_GROUP_set_curve_name(EC_GROUP *, int nid);int EC_GROUP_get_curve_name(const EC_GROUP *);void EC_GROUP_set_asn1_flag(EC_GROUP *, int flag);int EC_GROUP_get_asn1_flag(const EC_GROUP *);void EC_GROUP_set_point_conversion_form(EC_GROUP *, point_conversion_form_t);point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP *);unsigned char *EC_GROUP_get0_seed(const EC_GROUP *);size_t EC_GROUP_get_seed_len(const EC_GROUP *);size_t EC_GROUP_set_seed(EC_GROUP *, const unsigned char *, size_t len);int EC_GROUP_set_curve_GFp(EC_GROUP *, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *);int EC_GROUP_get_curve_GFp(const EC_GROUP *, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *);int EC_GROUP_set_curve_GF2m(EC_GROUP *, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *);int EC_GROUP_get_curve_GF2m(const EC_GROUP *, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *);/* returns the number of bits needed to represent a field element */int EC_GROUP_get_degree(const EC_GROUP *);/* EC_GROUP_check() returns 1 if 'group' defines a valid group, 0 otherwise */int EC_GROUP_check(const EC_GROUP *group, BN_CTX *ctx);/* EC_GROUP_check_discriminant() returns 1 if the discriminant of the * elliptic curve is not zero, 0 otherwise */int EC_GROUP_check_discriminant(const EC_GROUP *, BN_CTX *);/* EC_GROUP_cmp() returns 0 if both groups are equal and 1 otherwise */int EC_GROUP_cmp(const EC_GROUP *, const EC_GROUP *, BN_CTX *);/* EC_GROUP_new_GF*() calls EC_GROUP_new() and EC_GROUP_set_GF*() * after choosing an appropriate EC_METHOD */EC_GROUP *EC_GROUP_new_curve_GFp(const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *);EC_GROUP *EC_GROUP_new_curve_GF2m(const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *);/* EC_GROUP_new_by_curve_name() creates a EC_GROUP structure * specified by a curve name (in form of a NID) */EC_GROUP *EC_GROUP_new_by_curve_name(int nid);/* handling of internal curves */typedef struct { 	int nid;	const char *comment;	} EC_builtin_curve;/* EC_builtin_curves(EC_builtin_curve *r, size_t size) returns number  * of all available curves or zero if a error occurred.  * In case r ist not zero nitems EC_builtin_curve structures  * are filled with the data of the first nitems internal groups */size_t EC_get_builtin_curves(EC_builtin_curve *r, size_t nitems);/* EC_POINT functions */EC_POINT *EC_POINT_new(const EC_GROUP *);void EC_POINT_free(EC_POINT *);void EC_POINT_clear_free(EC_POINT *);int EC_POINT_copy(EC_POINT *, const EC_POINT *);EC_POINT *EC_POINT_dup(const EC_POINT *, const EC_GROUP *); const EC_METHOD *EC_POINT_method_of(const EC_POINT *);int EC_POINT_set_to_infinity(const EC_GROUP *, EC_POINT *);int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *, EC_POINT *,	const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *);int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *, const EC_POINT *,	BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *);int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *, EC_POINT *,	const BIGNUM *x, const BIGNUM *y, BN_CTX *);int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *, const EC_POINT *,	BIGNUM *x, BIGNUM *y, BN_CTX *);int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *, EC_POINT *,	const BIGNUM *x, int y_bit, BN_CTX *);int EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *, EC_POINT *,	const BIGNUM *x, const BIGNUM *y, BN_CTX *);int EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *, const EC_POINT *,	BIGNUM *x, BIGNUM *y, BN_CTX *);int EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *, EC_POINT *,	const BIGNUM *x, int y_bit, BN_CTX *);size_t EC_POINT_point2oct(const EC_GROUP *, const EC_POINT *, point_conversion_form_t form,        unsigned char *buf, size_t len, BN_CTX *);int EC_POINT_oct2point(const EC_GROUP *, EC_POINT *,        const unsigned char *buf, size_t len, BN_CTX *);/* other interfaces to point2oct/oct2point: */BIGNUM *EC_POINT_point2bn(const EC_GROUP *, const EC_POINT *,	point_conversion_form_t form, BIGNUM *, BN_CTX *);EC_POINT *EC_POINT_bn2point(const EC_GROUP *, const BIGNUM *,	EC_POINT *, BN_CTX *);char *EC_POINT_point2hex(const EC_GROUP *, const EC_POINT *,	point_conversion_form_t form, BN_CTX *);EC_POINT *EC_POINT_hex2point(const EC_GROUP *, const char *,	EC_POINT *, BN_CTX *);int EC_POINT_add(const EC_GROUP *, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *);int EC_POINT_dbl(const EC_GROUP *, EC_POINT *r, const EC_POINT *a, BN_CTX *);int EC_POINT_invert(const EC_GROUP *, EC_POINT *, BN_CTX *);int EC_POINT_is_at_infinity(const EC_GROUP *, const EC_POINT *);int EC_POINT_is_on_curve(const EC_GROUP *, const EC_POINT *, BN_CTX *);int EC_POINT_cmp(const EC_GROUP *, const EC_POINT *a, const EC_POINT *b, BN_CTX *);int EC_POINT_make_affine(const EC_GROUP *, EC_POINT *, BN_CTX *);int EC_POINTs_make_affine(const EC_GROUP *, size_t num, EC_POINT *[], BN_CTX *);int EC_POINTs_mul(const EC_GROUP *, EC_POINT *r, const BIGNUM *, size_t num, const EC_POINT *[], const BIGNUM *[], BN_CTX *);int EC_POINT_mul(const EC_GROUP *, EC_POINT *r, const BIGNUM *, const EC_POINT *, const BIGNUM *, BN_CTX *);/* EC_GROUP_precompute_mult() stores multiples of generator for faster point multiplication */int EC_GROUP_precompute_mult(EC_GROUP *, BN_CTX *);/* EC_GROUP_have_precompute_mult() reports whether such precomputation has been done */int EC_GROUP_have_precompute_mult(const EC_GROUP *);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
午夜精品久久久久久久99樱桃| 成人午夜短视频| 一区二区三区蜜桃| 最新热久久免费视频| 久久日韩粉嫩一区二区三区| 日韩欧美国产一二三区| 99精品桃花视频在线观看| 99国产欧美另类久久久精品| 成人高清伦理免费影院在线观看| 国产一区二区不卡| av电影在线观看不卡| 国产精品一区在线观看你懂的| 国产乱码一区二区三区| 国产成人亚洲综合色影视| 国内不卡的二区三区中文字幕| 久久99精品久久久久久国产越南| 亚洲精品视频一区| 日韩二区三区在线观看| 国产91色综合久久免费分享| 91久久精品一区二区| 欧美xxxxx裸体时装秀| 亚洲欧美视频一区| 美腿丝袜亚洲三区| 91久久精品日日躁夜夜躁欧美| 欧美大片在线观看一区| 国产精品久久久久久久久久免费看 | 欧美高清视频不卡网| 欧美电影免费观看高清完整版在| 国产精品国产自产拍高清av王其| 亚洲福利电影网| 成人做爰69片免费看网站| 精品蜜桃在线看| 一区二区三区在线视频免费观看| 亚洲激情中文1区| 色婷婷综合久久久久中文| 国产视频一区在线播放| 一区二区免费看| 国产精品夜夜嗨| 精品国产露脸精彩对白| 久久99精品久久久| 日韩三级视频在线看| 香蕉av福利精品导航| 欧美老人xxxx18| 成人免费在线视频观看| 色88888久久久久久影院野外 | 亚洲va在线va天堂| 欧美日韩一区在线| 青青草国产成人99久久| 欧美福利视频一区| 国产一区二区在线观看视频| 久久婷婷色综合| 成人免费毛片app| 日韩欧美国产一二三区| 粉嫩在线一区二区三区视频| 日本一二三不卡| 99re成人精品视频| 亚洲一区二区在线观看视频| 欧美日韩精品一区视频| 日本午夜一本久久久综合| 中文字幕一区二区三区精华液 | 视频一区国产视频| 日本一区二区久久| 久久久久久久综合日本| 精品乱人伦一区二区三区| 欧美性大战久久久久久久| 成人国产电影网| 高清不卡在线观看| 北条麻妃一区二区三区| 精东粉嫩av免费一区二区三区| 一级精品视频在线观看宜春院 | 色综合天天综合在线视频| 国产剧情一区在线| 国产成人在线看| 成人av在线网| 欧美在线观看视频一区二区| 成人av免费观看| 色爱区综合激月婷婷| 在线观看成人小视频| 欧美视频三区在线播放| 在线不卡一区二区| 日韩一区二区三区精品视频| 精品剧情在线观看| 欧美经典一区二区三区| 亚洲欧洲成人自拍| 丝袜诱惑亚洲看片| 国产伦精品一区二区三区免费迷 | 久久久久国产一区二区三区四区| 日韩欧美一区二区三区在线| 精品免费国产二区三区| 中文字幕免费不卡| 日韩精品欧美成人高清一区二区| 久久精品国产精品亚洲精品| 91丨porny丨蝌蚪视频| 99国产麻豆精品| 精品国产髙清在线看国产毛片 | 亚洲猫色日本管| 美女视频网站久久| 一本久道中文字幕精品亚洲嫩| 3751色影院一区二区三区| 亚洲精品中文在线影院| 国产一区二区精品久久99| 欧美老肥妇做.爰bbww| 欧美国产精品v| 国产一区在线精品| 制服视频三区第一页精品| 亚洲私人黄色宅男| 91蜜桃在线免费视频| 国产精品久久久久久久午夜片| 蜜臀av性久久久久蜜臀aⅴ| 欧美精品自拍偷拍| 一区二区日韩电影| 欧美在线播放高清精品| 亚洲欧美日韩一区二区| 91黄色免费版| 午夜欧美大尺度福利影院在线看| 日本乱人伦aⅴ精品| 夜夜精品视频一区二区| 欧美自拍偷拍午夜视频| 亚洲黄色免费网站| 制服丝袜成人动漫| 丁香婷婷综合网| 亚洲图片有声小说| 欧美成人性战久久| 99久久99久久免费精品蜜臀| √…a在线天堂一区| 欧美伊人久久大香线蕉综合69| 国产美女一区二区| 中文字幕欧美日本乱码一线二线| av成人免费在线| 亚洲自拍与偷拍| 久久综合九色综合欧美98| 国产精品夜夜嗨| 亚洲.国产.中文慕字在线| 精品不卡在线视频| 色婷婷国产精品综合在线观看| 欧美a一区二区| 亚洲精品v日韩精品| 精品久久久久久无| 欧美日韩国产免费| 国产毛片一区二区| 麻豆一区二区三| 亚洲h精品动漫在线观看| 欧美国产日韩在线观看| 欧美zozo另类异族| 欧美成人一区二区三区在线观看| 91在线观看地址| av不卡在线播放| 99久久免费视频.com| 波多野结衣一区二区三区| 精品一区二区三区影院在线午夜| 蓝色福利精品导航| 国产乱人伦偷精品视频不卡 | 中文字幕日韩一区二区| 337p粉嫩大胆噜噜噜噜噜91av| 欧美男生操女生| 日韩欧美一二三四区| 日韩一二在线观看| 亚洲精品一区二区精华| 久久综合狠狠综合| 国产欧美在线观看一区| 亚洲欧美在线视频观看| 一区二区三区 在线观看视频| 亚洲综合在线第一页| 热久久一区二区| 国产露脸91国语对白| 9l国产精品久久久久麻豆| 欧美在线你懂得| 日韩三级视频在线看| 国产精品视频麻豆| 香蕉久久一区二区不卡无毒影院| 国内精品在线播放| 91啪亚洲精品| 久久色在线观看| 亚洲第一av色| 99久久99精品久久久久久 | 精品粉嫩aⅴ一区二区三区四区| 欧美激情中文字幕| 精品一区二区三区在线观看国产| 91日韩在线专区| 国产欧美精品一区二区色综合 | 欧美在线高清视频| 精品黑人一区二区三区久久| 亚洲精品一二三四区| 国产成人精品亚洲777人妖| 欧美一级精品在线| 人人精品人人爱| 欧美裸体一区二区三区| 亚洲综合视频在线观看| 91在线视频免费观看| 国产精品狼人久久影院观看方式| 蜜臀久久久久久久| 日韩欧美在线123| 精品无码三级在线观看视频| 精品伦理精品一区| 亚洲人成7777| 色婷婷国产精品| 日韩三级精品电影久久久| 日本aⅴ免费视频一区二区三区| 91精品国产综合久久福利| 午夜精品久久久久影视|