HomeSort by relevance Sort by last modified time
    Searched full:ktype (Results 1 - 23 of 23) sorted by null

  /external/openssh/regress/
cert-userkey.sh 20 for ktype in rsa dsa $ecdsa ; do
21 verbose "$tid: sign user ${ktype} cert"
22 ${SSHKEYGEN} -q -N '' -t ${ktype} \
23 -f $OBJ/cert_user_key_${ktype} || \
24 fail "ssh-keygen of cert_user_key_${ktype} failed"
27 -n ${USER},mekmitasdigoat $OBJ/cert_user_key_${ktype} ||
28 fail "couldn't sign cert_user_key_${ktype}"
30 test "${ktype}" = "ecdsa" && continue
31 cp $OBJ/cert_user_key_${ktype} $OBJ/cert_user_key_${ktype}_v0
    [all...]
cert-hostkey.sh 27 for ktype in rsa dsa $ecdsa ; do
28 verbose "$tid: sign host ${ktype} cert"
30 ${SSHKEYGEN} -q -N '' -t ${ktype} \
31 -f $OBJ/cert_host_key_${ktype} || \
32 fail "ssh-keygen of cert_host_key_${ktype} failed"
35 -n $HOSTS $OBJ/cert_host_key_${ktype} ||
36 fail "couldn't sign cert_host_key_${ktype}"
38 test "${ktype}" = "ecdsa" && continue
39 cp $OBJ/cert_host_key_${ktype} $OBJ/cert_host_key_${ktype}_v0
    [all...]
  /external/chromium/chrome/browser/
enumerate_modules_model_unittest_win.cc 14 static const ModuleEnumerator::ModuleType kType =
30 {kType, kStatus, L"c:\\foo\\bar.dll", L"", L"Prod", L"Desc", L"1.0",
32 {kType, kStatus, L"c:\\foo\\", L"bar.dll", L"Prod", L"Desc", L"1.0",
36 {kType, kStatus, L"C:\\Foo\\Bar.dll", L"", L"", L"", L"1.0",
38 {kType, kStatus, L"c:\\foo\\", L"bar.dll", L"", L"", L"1.0",
42 {kType, kStatus, L"c:\\foo.dll", L"", L"", L"", L"1.0 asdf",
44 {kType, kStatus, L"c:\\", L"foo.dll", L"", L"", L"1.0",
48 {kType, kStatus, L"bar.dll", L"", L"", L"", L"", L"", kAction},
49 {kType, kStatus, L"", L"bar.dll", L"", L"", L"", L"", kAction},
52 {kType, kStatus, L"", L"", L"", L"", L"1.0", L"", kAction}
    [all...]
  /external/openssh/
ssh-dss.c 133 char *ktype; local
136 ktype = buffer_get_cstring(&b, NULL);
137 if (strcmp("ssh-dss", ktype) != 0) {
138 error("ssh_dss_verify: cannot handle type %s", ktype);
140 xfree(ktype);
143 xfree(ktype);
ssh-ecdsa.c 106 char *ktype; local
118 ktype = buffer_get_string(&b, NULL);
119 if (strcmp(key_ssh_name_plain(key), ktype) != 0) {
120 error("%s: cannot handle type %s", __func__, ktype);
122 xfree(ktype);
125 xfree(ktype);
ssh-rsa.c 113 char *ktype; local
130 ktype = buffer_get_cstring(&b, NULL);
131 if (strcmp("ssh-rsa", ktype) != 0) {
132 error("ssh_rsa_verify: cannot handle type %s", ktype);
134 xfree(ktype);
137 xfree(ktype);
key.c 1467 char *ktype = NULL, *curve = NULL; local
    [all...]
sshconnect2.c 111 int ktype; local
136 if ((ktype = key_type_from_name(alg)) == KEY_UNSPEC)
139 key_type_plain(ktype), NULL))
    [all...]
ssh-keygen.c 390 int magic, rlen, ktype, i1, i2, i3, i4; local
420 ktype = KEY_DSA;
422 ktype = KEY_RSA;
428 key = key_new_private(ktype);
    [all...]
  /external/kernel-headers/original/linux/
kobject.h 58 struct kobj_type * ktype; member in struct:kobject
122 struct kobj_type * ktype; member in struct:kset
152 if (k->kset && k->kset->ktype)
153 return k->kset->ktype;
155 return k->ktype;
178 .ktype = _type, \
186 .ktype = _type, \
key.h 245 extern int register_key_type(struct key_type *ktype);
246 extern void unregister_key_type(struct key_type *ktype);
  /external/chromium/chrome/browser/extensions/
extension_input_api.cc 27 const char kType[] = "type";
81 EXTENSION_FUNCTION_VALIDATE(args->GetString(kType, &type_name));
  /external/openssl/crypto/dh/
dh_ameth.c 323 const char *ktype = NULL; local
350 ktype = "PKCS#3 DH Private-Key";
352 ktype = "PKCS#3 DH Public-Key";
354 ktype = "PKCS#3 DH Parameters";
364 if (BIO_printf(bp,"%s: (%d bit)\n", ktype, BN_num_bits(x->p)) <= 0)
  /external/openssl/crypto/ec/
ec_ameth.c 427 static int do_EC_KEY_print(BIO *bp, const EC_KEY *x, int off, int ktype)
452 if (ktype > 0)
465 if (ktype == 2)
474 if (ktype > 0)
483 if (ktype == 2)
485 else if (ktype == 1)
  /external/openssl/crypto/dsa/
dsa_ameth.c 435 const char *ktype = NULL; local
450 ktype = "Private-Key";
452 ktype = "Public-Key";
454 ktype = "DSA-Parameters";
473 if (BIO_printf(bp,"%s: (%d bit)\n",ktype, BN_num_bits(x->p))
  /external/openssl/crypto/krb5/
krb5_asn.c 129 ASN1_EXP(KRB5_ENCKEY, ktype, ASN1_INTEGER, 0),
krb5_asn.h 172 ASN1_INTEGER *ktype; member in struct:krb5_encryptionkey_st
  /external/openssl/include/openssl/
krb5_asn.h 172 ASN1_INTEGER *ktype; member in struct:krb5_encryptionkey_st
  /frameworks/av/media/libstagefright/foundation/
AMessage.cpp 134 item->mType = kType##NAME; \
139 const Item *item = findItem(name, kType##NAME); \
  /external/chromium/chrome/common/extensions/
extension_constants.h 85 extern const char* kType;
extension_constants.cc 80 const char* kType = "type";
extension_unittest.cc 559 input.SetString(keys::kType, values::kPageActionTypeTab);
    [all...]
  /external/v8/src/
liveobjectlist.cc 130 #define DECLARE_OBJECT_TYPE_ENUM(type, name) kType##type,
141 if (heap_obj->Is##type()) return kType##type;
175 if (obj->Is##type_()) return (type == kType##type_);
243 const char* type_desc = GetObjectTypeDesc(kType##type_); \
245 if (strstr(type_desc, key_str) != NULL) return kType##type_; \
    [all...]

Completed in 371 milliseconds