Searched refs:dh (Results 126 - 150 of 238) sorted by relevance

12345678910

/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssh/lib/
H A DMakefile26 dh.c \
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/dh/
H A Ddh_gen.c1 /* crypto/dh/dh_gen.c */
67 #include <openssl/dh.h>
H A Ddhtest.c1 /* crypto/dh/dhtest.c */
84 #include <openssl/dh.h>
/netbsd-6-1-5-RELEASE/sys/dev/pci/n8/
H A Dnspvar.h60 } dh; member in union:__anon8108::__anon8109
104 /* inputs: dh->priv_key (x) pub_key (g^x) dh->p (prime) key output g^x */
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dpkinit.c67 DH *dh; member in union:krb5_pk_init_ctx_data::__anon214
135 select_dh_group(krb5_context context, DH *dh, unsigned long bits, argument
160 dh->p = integer_to_BN(context, "p", &m->p);
161 if (dh->p == NULL)
163 dh->g = integer_to_BN(context, "g", &m->g);
164 if (dh->g == NULL)
166 dh->q = integer_to_BN(context, "q", &m->q);
167 if (dh->q == NULL)
439 ctx->u.dh = DH_new();
440 if (ctx->u.dh
480 DH *dh = ctx->u.dh; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/engine/
H A Deng_cryptodev.c61 #include <crypto/dh/dh.h>
127 static int cryptodev_mod_exp_dh(const DH *dh, BIGNUM *r, const BIGNUM *a,
131 const BIGNUM *pub_key, DH *dh);
1282 cryptodev_mod_exp_dh(const DH *dh, BIGNUM *r, const BIGNUM *a, argument
1290 cryptodev_dh_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh) argument
1299 return ((meth->compute_key)(key, pub_key, dh));
1302 keylen = BN_num_bits(dh->p);
1307 /* inputs: dh->priv_key pub_key dh
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/ssl/
H A Ds3_srvr.c164 #include <openssl/dh.h>
912 if (s->s3->tmp.dh != NULL)
914 DH_free(s->s3->tmp.dh);
915 s->s3->tmp.dh = NULL;
1574 DH *dh=NULL,*dhp; local
1650 if (s->s3->tmp.dh != NULL)
1656 if ((dh=DHparams_dup(dhp)) == NULL)
1662 s->s3->tmp.dh=dh;
1667 if(!DH_generate_key(dh))
[all...]
H A Ds3_lib.c162 #include <openssl/dh.h>
2980 if (s->s3->tmp.dh != NULL)
2981 DH_free(s->s3->tmp.dh);
3027 if (s->s3->tmp.dh != NULL)
3029 DH_free(s->s3->tmp.dh);
3030 s->s3->tmp.dh = NULL;
3171 DH *dh = (DH *)parg; local
3172 if (dh == NULL)
3177 if ((dh = DHparams_dup(dh))
3477 DH *new=NULL,*dh; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/engines/
H A De_nuron.c72 #include <openssl/dh.h>
260 /* This function is aliased to mod_exp (with the dh and mont dropped). */
261 static int nuron_mod_exp_dh(const DH *dh, BIGNUM *r, argument
H A De_atalla.c72 #include <openssl/dh.h>
118 static int atalla_mod_exp_dh(const DH *dh, BIGNUM *r,
582 /* This function is aliased to mod_exp (with the dh and mont dropped). */
583 static int atalla_mod_exp_dh(const DH *dh, BIGNUM *r, argument
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/lib/libcrypto/
H A DMakefile64 dh.h dsa.h dso.h e_os2.h ebcdic.h ec.h ecdh.h ecdsa.h engine.h \
97 .PATH: ${OPENSSLSRC}/fips/dh
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/dns/
H A Ddst_internal.h58 #include <openssl/dh.h>
115 DH *dh; member in union:dst_key::__anon1318
/netbsd-6-1-5-RELEASE/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_pid.c617 dof_helper_t dh;
654 dh.dofhp_dof = sym.st_value;
655 dh.dofhp_addr = (e_type == ET_EXEC) ? 0 : pmp->pr_vaddr;
657 dt_pid_objname(dh.dofhp_mod, sizeof (dh.dofhp_mod),
672 if (pr_ioctl(P, fd, DTRACEHIOC_ADDDOF, &dh, sizeof (dh)) < 0)
673 dt_dprintf("DOF was rejected for %s\n", dh.dofhp_mod);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
H A Damd64-byte.exp70 set byte_regs(18) dh
/netbsd-6-1-5-RELEASE/sys/arch/i386/stand/bootxx/
H A Dpbr.S143 movb %ch, %dh /* dh = head = 0 */
221 movb 1(%di), %dh /* head */
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/apps/
H A Ds_server.c184 #include <openssl/dh.h>
239 DH *dh=NULL; local
241 if ((dh=DH_new()) == NULL) return(NULL);
242 dh->p=BN_bin2bn(dh512_p,sizeof(dh512_p),NULL);
243 dh->g=BN_bin2bn(dh512_g,sizeof(dh512_g),NULL);
244 if ((dh->p == NULL) || (dh->g == NULL))
246 return(dh);
1664 DH *dh=NULL; local
1667 dh
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/lib/libcrypto/arch/i386/
H A Dcmll-x86.S178 movzbl %dh,%esi
183 movzbl %dh,%esi
238 movzbl %dh,%esi
243 movzbl %dh,%esi
298 movzbl %dh,%esi
303 movzbl %dh,%esi
526 movzbl %dh,%esi
531 movzbl %dh,%esi
586 movzbl %dh,%esi
591 movzbl %dh,
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/src/crypto/
H A Dtls_openssl.c2068 DH *dh;
2083 dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL);
2086 while (dh == NULL) {
2104 dh = DSA_dup_DH(dsa);
2106 if (dh == NULL) {
2114 if (dh == NULL) {
2120 if (SSL_set_tmp_dh(conn->ssl, dh) != 1) {
2124 DH_free(dh);
2127 DH_free(dh);
2142 DH *dh;
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/src/tls/
H A Dtlsv1_cred.c340 const u8 *dh, size_t len)
345 pos = dh;
346 end = dh + len;
339 tlsv1_set_dhparams_der(struct tlsv1_credentials *cred, const u8 *dh, size_t len) argument
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/
H A Dinstall-crypto.com80 bn, ec, rsa, dsa, ecdsa, dh, ecdh, dso, engine, -
113 $ exheader_dh := dh.h
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/test/
H A Dtestssl141 if ../util/shlib_wrap.sh ../apps/openssl no-dh; then
154 if ../util/shlib_wrap.sh ../apps/openssl no-dh; then
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/contrib/dbus/
H A Ddbus_service.h137 dbus_svc_ErrorHandler dh, /* optional debug / info log message handler */
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/tests/dst/
H A Ddst_test.c158 dh(dns_name_t *name1, int id1, dns_name_t *name2, int id2, isc_mem_t *mctx) { function
279 isc_buffer_init(&b, "dh.", 3);
284 dh(name, 18602, name, 48957, mctx);
/netbsd-6-1-5-RELEASE/sys/arch/alpha/pci/
H A Dpci_swiz_bus_mem_chipdep.c611 bus_space_handle_t dh = 0, sh = 0; /* XXX -Wuninitialized */ local
695 if (didd && !__C(CHIP,_xlate_addr_to_dense_handle)(v, memaddr, &dh)) {
725 *memhp = dh;
892 bus_space_handle_t dh = 0, sh = 0; /* XXX -Wuninitialized */ local
897 if (__C(CHIP,_xlate_addr_to_dense_handle)(v, addr + off, &dh)) {
899 dh = ALPHA_K0SEG_TO_PHYS(dh);
910 return (alpha_btop(dh));
/netbsd-6-1-5-RELEASE/sys/arch/x68k/include/
H A Dbus.h177 #define bus_space_copy_region_1(t,sh,so,dh,do,c) \
178 _bus_space_copy_region_1(t,sh,so,dh,do,c)
179 #define bus_space_copy_region_2(t,sh,so,dh,do,c) \
180 _bus_space_copy_region_2(t,sh,so,dh,do,c)
181 #define bus_space_copy_region_4(t,sh,so,dh,do,c) \
182 _bus_space_copy_region_4(t,sh,so,dh,do,c)

Completed in 336 milliseconds

12345678910