Searched refs:DH (Results 1 - 25 of 198) sorted by relevance

12345678

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Ddh.cpp13 DH dh1;
14 DH dh2(NullRNG(), 10);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/dh/
H A Ddh_asn1.c74 DH_free((DH *)*pval);
82 ASN1_SIMPLE(DH, p, BIGNUM),
83 ASN1_SIMPLE(DH, g, BIGNUM),
84 ASN1_OPT(DH, length, ZLONG),
85 } ASN1_SEQUENCE_END_cb(DH, DHparams)
87 IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(DH, DHparams, DHparams)
H A Ddh.h65 #error DH is disabled.
81 #define DH_FLAG_NO_EXP_CONSTTIME 0x02 /* new with 0.9.7h; the built-in DH
94 /* typedef struct dh_st DH; */
101 int (*generate_key)(DH *dh);
102 int (*compute_key)(unsigned char *key,const BIGNUM *pub_key,DH *dh);
103 int (*bn_mod_exp)(const DH *dh, BIGNUM *r, const BIGNUM *a,
107 int (*init)(DH *dh);
108 int (*finish)(DH *dh);
112 int (*generate_params)(DH *dh, int prime_len, int generator, BN_GENCB *cb);
118 * a DH i
[all...]
H A Ddh_depr.c67 DH *DH_generate_parameters(int prime_len, int generator,
71 DH *ret=NULL;
H A Ddh_key.c65 static int generate_key(DH *dh);
66 static int compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh);
67 static int dh_bn_mod_exp(const DH *dh, BIGNUM *r,
71 static int dh_init(DH *dh);
72 static int dh_finish(DH *dh);
74 int DH_generate_key(DH *dh)
79 int DH_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh)
85 "OpenSSL DH Method",
101 static int generate_key(DH *dh)
174 static int compute_key(unsigned char *key, const BIGNUM *pub_key, DH *d
[all...]
H A Ddh_lib.c83 int DH_set_method(DH *dh, const DH_METHOD *meth)
102 DH *DH_new(void)
107 DH *DH_new_method(ENGINE *engine)
109 DH *ret;
111 ret=(DH *)OPENSSL_malloc(sizeof(DH));
174 void DH_free(DH *r)
180 REF_PRINT("DH",r);
211 int DH_up_ref(DH *r)
215 REF_PRINT("DH",
[all...]
H A Ddh_gen.c69 static int dh_builtin_genparams(DH *ret, int prime_len, int generator, BN_GENCB *cb);
71 int DH_generate_parameters_ex(DH *ret, int prime_len, int generator, BN_GENCB *cb)
78 /* We generate DH parameters as follows
96 * Since DH should be using a safe prime (both p and q are prime),
103 static int dh_builtin_genparams(DH *ret, int prime_len, int generator, BN_GENCB *cb)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Ddh.h65 #error DH is disabled.
81 #define DH_FLAG_NO_EXP_CONSTTIME 0x02 /* new with 0.9.7h; the built-in DH
94 /* typedef struct dh_st DH; */
101 int (*generate_key)(DH *dh);
102 int (*compute_key)(unsigned char *key,const BIGNUM *pub_key,DH *dh);
103 int (*bn_mod_exp)(const DH *dh, BIGNUM *r, const BIGNUM *a,
107 int (*init)(DH *dh);
108 int (*finish)(DH *dh);
112 int (*generate_params)(DH *dh, int prime_len, int generator, BN_GENCB *cb);
118 * a DH i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/include/bcmcrypto/
H A Ddh.h97 /* Place holders if we want to do X9.42 DH */
103 } DH; typedef in typeref:struct:dh_st
121 DH * DH_new(void);
122 void DH_free(DH *dh);
123 int DH_generate_key(unsigned char *key, DH *dh);
124 int DH_compute_key(unsigned char *key, unsigned char *pubbuf, int buflen, DH *dh);
125 int DH_compute_key_bn(unsigned char *key, BIGNUM *peer_key, DH *dh);
126 DH *DH_init(unsigned char *pbuf, int plen, int g);
129 int DH_size(const DH *dh);
130 DH * DH_generate_parameter
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/dh/
H A Ddh.h65 # error DH is disabled.
83 * new with 0.9.7h; the built-in DH
93 * If this flag is set the DH method is FIPS compliant and can be used in
114 /* typedef struct dh_st DH; */
120 int (*generate_key) (DH *dh);
121 int (*compute_key) (unsigned char *key, const BIGNUM *pub_key, DH *dh);
123 int (*bn_mod_exp) (const DH *dh, BIGNUM *r, const BIGNUM *a,
126 int (*init) (DH *dh);
127 int (*finish) (DH *dh);
131 int (*generate_params) (DH *d
[all...]
H A Ddh_depr.c66 DH *DH_generate_parameters(int prime_len, int generator,
70 DH *ret = NULL;
H A Ddh_asn1.c77 DH_free((DH *)*pval);
85 ASN1_SIMPLE(DH, p, BIGNUM),
86 ASN1_SIMPLE(DH, g, BIGNUM),
87 ASN1_OPT(DH, length, ZLONG),
88 } ASN1_SEQUENCE_END_cb(DH, DHparams)
90 IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(DH, DHparams, DHparams)
93 * Internal only structures for handling X9.42 DH: this gets translated to or
94 * from a DH structure straight away.
129 /* Application leve function: read in X9.42 DH parameters into DH structur
[all...]
H A Ddh_key.c65 static int generate_key(DH *dh);
66 static int compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh);
67 static int dh_bn_mod_exp(const DH *dh, BIGNUM *r,
70 static int dh_init(DH *dh);
71 static int dh_finish(DH *dh);
73 int DH_generate_key(DH *dh)
85 int DH_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh)
97 int DH_compute_key_padded(unsigned char *key, const BIGNUM *pub_key, DH *dh)
112 "OpenSSL DH Method",
128 static int generate_key(DH *d
[all...]
H A Ddh_prn.c65 int DHparams_print_fp(FILE *fp, const DH *x)
H A Ddh_lib.c95 int DH_set_method(DH *dh, const DH_METHOD *meth)
117 DH *DH_new(void)
122 DH *DH_new_method(ENGINE *engine)
124 DH *ret;
126 ret = (DH *)OPENSSL_malloc(sizeof(DH));
182 void DH_free(DH *r)
189 REF_PRINT("DH", r);
228 int DH_up_ref(DH *r)
232 REF_PRINT("DH",
[all...]
H A Ddh_gen.c73 static int dh_builtin_genparams(DH *ret, int prime_len, int generator,
76 int DH_generate_parameters_ex(DH *ret, int prime_len, int generator,
96 * We generate DH parameters as follows
114 * Since DH should be using a safe prime (both p and q are prime),
122 static int dh_builtin_genparams(DH *ret, int prime_len, int generator,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/dh/
H A Ddh.h65 # error DH is disabled.
83 * new with 0.9.7h; the built-in DH
93 * If this flag is set the DH method is FIPS compliant and can be used in
114 /* typedef struct dh_st DH; */
120 int (*generate_key) (DH *dh);
121 int (*compute_key) (unsigned char *key, const BIGNUM *pub_key, DH *dh);
123 int (*bn_mod_exp) (const DH *dh, BIGNUM *r, const BIGNUM *a,
126 int (*init) (DH *dh);
127 int (*finish) (DH *dh);
131 int (*generate_params) (DH *d
[all...]
H A Ddh_depr.c66 DH *DH_generate_parameters(int prime_len, int generator,
70 DH *ret = NULL;
H A Ddh_asn1.c77 DH_free((DH *)*pval);
85 ASN1_SIMPLE(DH, p, BIGNUM),
86 ASN1_SIMPLE(DH, g, BIGNUM),
87 ASN1_OPT(DH, length, ZLONG),
88 } ASN1_SEQUENCE_END_cb(DH, DHparams)
90 IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(DH, DHparams, DHparams)
93 * Internal only structures for handling X9.42 DH: this gets translated to or
94 * from a DH structure straight away.
129 /* Application leve function: read in X9.42 DH parameters into DH structur
[all...]
H A Ddh_key.c65 static int generate_key(DH *dh);
66 static int compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh);
67 static int dh_bn_mod_exp(const DH *dh, BIGNUM *r,
70 static int dh_init(DH *dh);
71 static int dh_finish(DH *dh);
73 int DH_generate_key(DH *dh)
85 int DH_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh)
97 int DH_compute_key_padded(unsigned char *key, const BIGNUM *pub_key, DH *dh)
112 "OpenSSL DH Method",
128 static int generate_key(DH *d
[all...]
H A Ddh_prn.c65 int DHparams_print_fp(FILE *fp, const DH *x)
H A Ddh_lib.c95 int DH_set_method(DH *dh, const DH_METHOD *meth)
117 DH *DH_new(void)
122 DH *DH_new_method(ENGINE *engine)
124 DH *ret;
126 ret = (DH *)OPENSSL_malloc(sizeof(DH));
182 void DH_free(DH *r)
189 REF_PRINT("DH", r);
228 int DH_up_ref(DH *r)
232 REF_PRINT("DH",
[all...]
H A Ddh_gen.c73 static int dh_builtin_genparams(DH *ret, int prime_len, int generator,
76 int DH_generate_parameters_ex(DH *ret, int prime_len, int generator,
96 * We generate DH parameters as follows
114 * Since DH should be using a safe prime (both p and q are prime),
122 static int dh_builtin_genparams(DH *ret, int prime_len, int generator,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/util/
H A Drmold.pl50 opendir(DH, $dir) || die("Cannot open $dir: $!\n");
54 foreach $_ (readdir(DH)) {
64 closedir(DH);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Drtmpdh.h53 typedef DH FF_DH;

Completed in 130 milliseconds

12345678