HomeSort by relevance Sort by last modified time
    Searched defs:keytype (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
d2i_pr.c 135 int keytype; local
146 keytype = EVP_PKEY_DSA;
148 keytype = EVP_PKEY_EC;
167 else keytype = EVP_PKEY_RSA;
169 return d2i_PrivateKey(keytype, a, pp, length);
  /external/openssl/crypto/asn1/
d2i_pr.c 135 int keytype; local
146 keytype = EVP_PKEY_DSA;
148 keytype = EVP_PKEY_EC;
167 else keytype = EVP_PKEY_RSA;
169 return d2i_PrivateKey(keytype, a, pp, length);
  /external/dropbear/
dropbearconvert.c 114 char * keytype = NULL; local
126 keytype = "RSA";
131 keytype = "DSS";
135 fprintf(stderr, "Key is a %s key\n", keytype);
cli-authpubkey.c 67 int keytype; local
73 keytype = signkey_type_from_name(algotype, algolen);
74 TRACE(("recv_msg_userauth_pk_ok: type %d", keytype))
85 if (keyitem->type != keytype) {
93 buf_put_pub_key(keybuf, keyitem->key, keytype);
121 send_msg_userauth_pubkey(keyitem->key, keytype, 1);
cli-runopts.c 299 int keytype; local
302 keytype = DROPBEAR_SIGNKEY_ANY;
303 if ( readhostkey(filename, key, &keytype) != DROPBEAR_SUCCESS ) {
313 nextkey->type = keytype;
dropbearkey.c 61 static void printpubkey(sign_key * key, int keytype);
97 int keytype = -1; local
168 keytype = DROPBEAR_SIGNKEY_RSA;
174 keytype = DROPBEAR_SIGNKEY_DSS;
179 if (keytype == -1) {
199 if (keytype == DROPBEAR_SIGNKEY_DSS) {
201 } else if (keytype == DROPBEAR_SIGNKEY_RSA) {
219 switch(keytype) {
237 buf_put_priv_key(buf, key, keytype);
244 printpubkey(key, keytype);
256 int keytype; local
    [all...]
signkey.c 94 int keytype; local
100 keytype = signkey_type_from_name(ident, len);
103 if (*type != DROPBEAR_SIGNKEY_ANY && *type != keytype) {
107 *type = keytype;
113 if (keytype == DROPBEAR_SIGNKEY_DSS) {
123 if (keytype == DROPBEAR_SIGNKEY_RSA) {
146 int keytype; local
152 keytype = signkey_type_from_name(ident, len);
155 if (*type != DROPBEAR_SIGNKEY_ANY && *type != keytype) {
156 TRACE(("wrong key type: %d %d", *type, keytype))
    [all...]
keyimport.c 143 int keytype = -1; local
151 keytype = DROPBEAR_SIGNKEY_RSA;
156 keytype = DROPBEAR_SIGNKEY_DSS;
161 buf_put_priv_key(buf, key, keytype);
707 int keytype = -1; local
713 keytype = DROPBEAR_SIGNKEY_RSA;
718 keytype = DROPBEAR_SIGNKEY_DSS;
722 dropbear_assert(keytype != -1);
728 buf_put_priv_key(keyblob, key, keytype);
741 if (keytype == DROPBEAR_SIGNKEY_RSA)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_join.py 33 keytype = '' variable in class:JoinTestCase
test_associate.py 123 keytype = '' variable in class:AssociateTestCase
142 if type(self.keytype) == type(''):
247 if type(self.keytype) == type(''):
316 keytype = 0 variable in class:AssociateRecnoTestCase
371 if type(self.keytype) == type(''):
395 keytype = 0 variable in class:ShelveAssociateRecnoTestCase
417 if type(self.keytype) == type(''):
436 keytype = 0 variable in class:ThreadedAssociateRecnoTestCase
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_join.py 33 keytype = '' variable in class:JoinTestCase
test_associate.py 123 keytype = '' variable in class:AssociateTestCase
142 if type(self.keytype) == type(''):
247 if type(self.keytype) == type(''):
316 keytype = 0 variable in class:AssociateRecnoTestCase
371 if type(self.keytype) == type(''):
395 keytype = 0 variable in class:ShelveAssociateRecnoTestCase
417 if type(self.keytype) == type(''):
436 keytype = 0 variable in class:ThreadedAssociateRecnoTestCase
  /external/chromium_org/third_party/smhasher/src/
KeysetTest.h 135 template < typename keytype, typename hashtype >
136 void SparseKeygenRecurse ( pfHash hash, int start, int bitsleft, bool inclusive, keytype & k, std::vector<hashtype> & hashes )
138 const int nbytes = sizeof(keytype);
149 hash(&k,sizeof(keytype),0,&h);
169 typedef Blob<keybits> keytype; typedef
173 keytype k;
180 hash(&k,sizeof(keytype),0,&h);
202 template < typename keytype, typename hashtype >
205 const int keybits = sizeof(keytype) * 8;
221 keytype key
    [all...]
Bitvec.cpp 673 struct keytype struct
685 keytype k;
  /hardware/samsung_slsi/exynos5/libkeymaster/
tlcTeeKeymaster_if.h 122 uint32_t keytype; /**< Key type, e.g. RSA */ member in struct:__anon32295
139 * @param keyType [in] Key pair type. RSA or RSACRT
147 teeRsaKeyPairType_t keyType,
tlTeeKeymaster_Api.h 186 uint32_t keytype; /**< RSA key pair type. RSA or RSA CRT */ member in struct:__anon32281
  /external/chromium_org/third_party/openssl/openssl/apps/
pkcs12.c 114 int keytype = 0; local
145 else if (!strcmp (*args, "-keyex")) keytype = KEY_EX;
146 else if (!strcmp (*args, "-keysig")) keytype = KEY_SIG;
584 key_pbe, cert_pbe, iter, -1, keytype);
  /external/openssl/apps/
pkcs12.c 114 int keytype = 0; local
145 else if (!strcmp (*args, "-keyex")) keytype = KEY_EX;
146 else if (!strcmp (*args, "-keysig")) keytype = KEY_SIG;
584 key_pbe, cert_pbe, iter, -1, keytype);
  /external/chromium_org/third_party/openssl/openssl/ssl/
s3_clnt.c 2776 int keytype; local
    [all...]
  /external/openssl/ssl/
s3_clnt.c 2777 int keytype; local
    [all...]
  /frameworks/av/media/libstagefright/
MPEG4Extractor.cpp 2408 uint32_t keytype; local
    [all...]

Completed in 926 milliseconds