HomeSort by relevance Sort by last modified time
    Searched defs:dh (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/openssl/crypto/dh/
p1024.c 1 /* crypto/dh/p1024.c */
62 #include <openssl/dh.h>
85 DH *dh; local
87 dh=DH_new();
88 dh->p=BN_bin2bn(data,sizeof(data),NULL);
89 dh->g=BN_new();
90 BN_set_word(dh->g,2);
91 PEM_write_DHparams(stdout,dh);
p192.c 1 /* crypto/dh/p192.c */
62 #include <openssl/dh.h>
73 DH *dh; local
75 dh=DH_new();
76 dh->p=BN_bin2bn(data,sizeof(data),NULL);
77 dh->g=BN_new();
78 BN_set_word(dh->g,3);
79 PEM_write_DHparams(stdout,dh);
p512.c 1 /* crypto/dh/p512.c */
62 #include <openssl/dh.h>
78 DH *dh; local
80 dh=DH_new();
81 dh->p=BN_bin2bn(data,sizeof(data),NULL);
82 dh->g=BN_new();
83 BN_set_word(dh->g,2);
84 PEM_write_DHparams(stdout,dh);
dh_pmeth.c 63 #include <openssl/dh.h>
67 /* DH pkey context structure */
163 DH *dh = NULL; local
174 dh = DH_new();
175 if (!dh)
177 ret = DH_generate_parameters_ex(dh,
180 EVP_PKEY_assign_DH(pkey, dh);
182 DH_free(dh);
188 DH *dh = NULL local
    [all...]
  /external/quake/quake/src/QW/client/
block16.h 4 movb %dh,%ah variable
6 movb %dh,%ch variable
19 movb %dh,%ah variable
21 movb %dh,%ch variable
34 movb %dh,%ah variable
36 movb %dh,%ch variable
49 movb %dh,%ah variable
51 movb %dh,%ch variable
65 movb %dh,%ah variable
67 movb %dh,%c variable
80 movb %dh,%ah variable
82 movb %dh,%ch variable
96 movb %dh,%ah variable
98 movb %dh,%ch variable
112 movb %dh,%ah variable
114 movb %dh,%ch variable
    [all...]
block8.h 4 movb %dh,%ah variable
6 movb %dh,%ch variable
19 movb %dh,%ah variable
21 movb %dh,%ch variable
34 movb %dh,%ah variable
36 movb %dh,%ch variable
49 movb %dh,%ah variable
51 movb %dh,%ch variable
65 movb %dh,%ah variable
67 movb %dh,%c variable
80 movb %dh,%ah variable
82 movb %dh,%ch variable
96 movb %dh,%ah variable
98 movb %dh,%ch variable
112 movb %dh,%ah variable
114 movb %dh,%ch variable
    [all...]
  /external/quake/quake/src/WinQuake/
block16.h 23 movb %dh,%ah variable
25 movb %dh,%ch variable
38 movb %dh,%ah variable
40 movb %dh,%ch variable
53 movb %dh,%ah variable
55 movb %dh,%ch variable
68 movb %dh,%ah variable
70 movb %dh,%ch variable
84 movb %dh,%ah variable
86 movb %dh,%c variable
99 movb %dh,%ah variable
101 movb %dh,%ch variable
115 movb %dh,%ah variable
117 movb %dh,%ch variable
131 movb %dh,%ah variable
133 movb %dh,%ch variable
    [all...]
block8.h 23 movb %dh,%ah variable
25 movb %dh,%ch variable
38 movb %dh,%ah variable
40 movb %dh,%ch variable
53 movb %dh,%ah variable
55 movb %dh,%ch variable
68 movb %dh,%ah variable
70 movb %dh,%ch variable
84 movb %dh,%ah variable
86 movb %dh,%c variable
99 movb %dh,%ah variable
101 movb %dh,%ch variable
115 movb %dh,%ah variable
117 movb %dh,%ch variable
131 movb %dh,%ah variable
133 movb %dh,%ch variable
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
DHUtil.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
16 * utility class for converting jce/jca DH objects
33 throw new InvalidKeyException("can't identify DH public key.");
48 throw new InvalidKeyException("can't identify DH private key.");
AlgorithmParametersSpi.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
81 throw new InvalidParameterSpecException("unknown parameter spec passed to DH parameters object.");
115 throw new IOException("Not a valid DH Parameter encoding.");
119 throw new IOException("Not a valid DH Parameter encoding.");
KeyFactorySpi.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
AlgorithmParameterGeneratorSpi.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
38 throw new InvalidAlgorithmParameterException("DH parameter generator requires a DHGenParameterSpec for initialisation");
66 params = AlgorithmParameters.getInstance("DH", BouncyCastleProvider.PROVIDER_NAME);
KeyAgreementSpi.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
KeyPairGeneratorSpi.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
36 super("DH");
  /external/icu4c/tools/genbrk/
genbrk.cpp 99 DataHeader dh ={ variable
306 uprv_memcpy(dh.info.formatVersion, ((RBBIDataHeader *)outData)->fFormatVersion, sizeof(dh.info.formatVersion));
313 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
  /external/openssh/
kexdhc.c 30 #include <openssl/dh.h>
44 #include "dh.h"
51 DH *dh; local
58 /* generate and send 'e', client DH public key */
61 dh = dh_new_group1();
64 dh = dh_new_group14();
69 dh_gen_key(dh, kex->we_need * 8);
71 packet_put_bignum2(dh->pub_key);
76 DHparams_print_fp(stderr, dh);
    [all...]
kexdhs.c 34 #include <openssl/dh.h>
43 #include "dh.h"
54 DH *dh; local
60 /* generate server DH public key */
63 dh = dh_new_group1();
66 dh = dh_new_group14();
71 dh_gen_key(dh, kex->we_need * 8);
101 DHparams_print_fp(stderr, dh);
103 BN_print_fp(stderr, dh->pub_key)
    [all...]
kexgexc.c 31 #include <openssl/dh.h>
45 #include "dh.h"
59 DH *dh; local
104 dh = dh_new_group(g, p);
105 dh_gen_key(dh, kex->we_need * 8);
108 DHparams_print_fp(stderr, dh);
110 BN_print_fp(stderr, dh->pub_key);
115 /* generate and send 'e', client DH public key */
117 packet_put_bignum2(dh->pub_key)
    [all...]
kexgexs.c 36 #include <openssl/dh.h>
45 #include "dh.h"
58 DH *dh; local
105 dh = PRIVSEP(choose_dh(min, nbits, max));
106 if (dh == NULL)
107 packet_disconnect("Protocol error: no matching DH grp found");
111 packet_put_bignum2(dh->p);
112 packet_put_bignum2(dh->g);
119 dh_gen_key(dh, kex->we_need * 8)
    [all...]
  /external/icu4c/tools/gencfu/
gencfu.cpp 99 DataHeader dh ={ variable
257 uprv_memcpy(dh.info.formatVersion,
259 sizeof(dh.info.formatVersion));
266 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
  /external/openssl/apps/
gendh.c 77 #include <openssl/dh.h>
92 DH *dh=NULL; local
200 BIO_printf(bio_err,"Generating DH parameters, %d bit long safe prime, generator %d\n",num,g);
203 if(((dh = DH_new()) == NULL) || !DH_generate_parameters_ex(dh, num, g, &cb))
208 if (!PEM_write_bio_DHparams(out,dh))
215 if (dh != NULL) DH_free(dh);
dh.c 1 /* apps/dh.c */
70 #include <openssl/dh.h>
91 DH *dh=NULL; local
176 BIO_printf(bio_err," -check check the DH parameters\n");
177 BIO_printf(bio_err," -text print a text form of the DH parameters\n");
230 dh=d2i_DHparams_bio(in,NULL);
232 dh=PEM_read_bio_DHparams(in,NULL,NULL,NULL);
238 if (dh == NULL)
240 BIO_printf(bio_err,"unable to load DH parameters\n")
    [all...]
  /frameworks/base/core/java/android/text/style/
DrawableMarginSpan.java 51 int dh = mDrawable.getIntrinsicHeight(); local
54 mDrawable.setBounds(ix, itop, ix+dw, itop+dh);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/dh/
DhExchange.java 5 package ch.ethz.ssh2.crypto.dh;
77 throw new IllegalArgumentException("Unknown DH group " + group);
DhGroupExchange.java 5 package ch.ethz.ssh2.crypto.dh;

Completed in 627 milliseconds

1 2 3 4 5