Searched defs:key2 (Results 1 - 25 of 118) sorted by relevance

12345

/external/openssl/crypto/des/
H A Dread2pwd.c129 int DES_read_2passwords(DES_cblock *key1, DES_cblock *key2, const char *prompt, argument
136 DES_string_to_2keys(buf,key1,key2);
H A Dstr2key.c102 void DES_string_to_2keys(const char *str, DES_cblock *key1, DES_cblock *key2) argument
109 memset(key2,0,8);
116 (*key2)[i]=(*key1)[i]=(str[i]<<1);
124 (*key2)[i%8]^=(str[i]<<1);
138 (*key2)[i%8]^=(j<<1);
148 (*key2)[7-(i%8)]^=j;
151 if (length <= 8) memcpy(key2,key1,8);
154 DES_set_odd_parity(key2);
164 if(DES_is_weak_key(key2))
165 (*key2)[
[all...]
H A Ddes3s.cpp39 des_key_schedule key1,key2,key3; local
48 des_encrypt3(&data[0],key1,key2,key3);
50 des_encrypt3(&data[0],key1,key2,key3);
51 des_encrypt3(&data[0],key1,key2,key3);
52 des_encrypt3(&data[0],key1,key2,key3);
55 des_encrypt3(&data[0],key1,key2,key3);
56 des_encrypt3(&data[0],key1,key2,key3);
57 des_encrypt3(&data[0],key1,key2,key3);
58 des_encrypt3(&data[0],key1,key2,key3);
60 des_encrypt3(&data[0],key1,key2,key
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
H A DEncodedKeySpec2Test.java62 private boolean isEqual(Key key1, Key key2) { argument
63 if (key1 instanceof DSAPublicKey && key2 instanceof DSAPublicKey) {
65 DSAPublicKey dsa2 = ((DSAPublicKey) key2);
72 && key2 instanceof DSAPrivateKey) {
74 DSAPrivateKey dsa2 = ((DSAPrivateKey) key2);
/external/chromium_org/components/nacl/browser/
H A Dnacl_validation_cache_unittest.cc13 const char key2[65] = member in namespace:nacl
80 std::string key(key2);
142 std::string key(key2);
155 std::string key(key2);
/external/chromium_org/net/dns/
H A Dhost_cache_unittest.cc36 HostCache::Key key2 = Key("foobar2.com"); local
53 EXPECT_FALSE(cache.Lookup(key2, now));
54 cache.Set(key2, entry, now, kTTL);
55 EXPECT_TRUE(cache.Lookup(key2, now));
63 EXPECT_TRUE(cache.Lookup(key2, now));
64 EXPECT_NE(cache.Lookup(key1, now), cache.Lookup(key2, now));
70 EXPECT_TRUE(cache.Lookup(key2, now));
79 EXPECT_TRUE(cache.Lookup(key2, now));
85 EXPECT_FALSE(cache.Lookup(key2, now));
100 HostCache::Key key2 local
128 HostCache::Key key2 = Key("foobar2.com"); local
304 HostCache::Key key2; member in struct:net::__anon9205
367 const HostCache::Key& key2 = tests[i].key2; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dhandle.c53 compare(void *key1, void *key2) argument
55 if (key1 < key2)
57 else if (key1 > key2)
/external/chromium_org/third_party/mesa/src/src/gallium/tests/unit/
H A Du_cache_test.c61 cache_test_compare(const void *key1, const void *key2) { argument
62 return !(key1 == key2);
/external/chromium_org/ui/accessibility/extensions/highcontrast/
H A Dpopup.js7 var key2; variable
111 key2 = '&#x2318;+Shift+F12';
114 key2 = 'Shift+F12';
127 '</b>:<br><span class="kb">(' + key2 + ')</span>';
/external/libsepol/src/
H A Dsymtab.c31 hashtab_key_t key2)
36 keyp2 = (char *)key2;
29 symcmp(hashtab_t h __attribute__ ((unused)), hashtab_key_t key1, hashtab_key_t key2) argument
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dhandle.c53 compare(void *key1, void *key2) argument
55 if (key1 < key2)
57 else if (key1 > key2)
/external/mesa3d/src/gallium/tests/unit/
H A Du_cache_test.c61 cache_test_compare(const void *key1, const void *key2) { argument
62 return !(key1 == key2);
/external/openfst/src/include/fst/extensions/far/
H A Dequal.h61 const string key2 = reader2->GetKey(); local
62 if (!end_key.empty() && end_key < key1 && end_key < key2) {
67 if (key1 != key2) {
69 << key1 << "\" <> \"" << key2 << "\"."; local
/external/chromium_org/third_party/icu/source/test/intltest/
H A Duvectest.cpp70 UVectorTest_compareInt32(UElement key1, UElement key2) { argument
71 if (key1.integer > key2.integer) {
74 else if (key1.integer < key2.integer) {
82 UVectorTest_compareCstrings(const UElement key1, const UElement key2) { argument
83 return !strcmp((const char *)key1.pointer, (const char *)key2.pointer);
164 static UBool U_CALLCONV neverTRUE(const UElement /*key1*/, const UElement /*key2*/) {
/external/icu/icu4c/source/test/intltest/
H A Duvectest.cpp70 UVectorTest_compareInt32(UElement key1, UElement key2) { argument
71 if (key1.integer > key2.integer) {
74 else if (key1.integer < key2.integer) {
82 UVectorTest_compareCstrings(const UElement key1, const UElement key2) { argument
83 return !strcmp((const char *)key1.pointer, (const char *)key2.pointer);
164 static UBool U_CALLCONV neverTRUE(const UElement /*key1*/, const UElement /*key2*/) {
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_hash_table.c58 int (*compare)(void *key1, void *key2);
80 int (*compare)(void *key1, void *key2))
79 util_hash_table_create(unsigned (*hash)(void *key), int (*compare)(void *key1, void *key2)) argument
/external/chromium_org/v8/src/
H A Dtransitions.cc42 static bool InsertionPointFound(Name* key1, Name* key2) { argument
43 return key1->Hash() > key2->Hash();
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_hash_table.c58 int (*compare)(void *key1, void *key2);
80 int (*compare)(void *key1, void *key2))
79 util_hash_table_create(unsigned (*hash)(void *key), int (*compare)(void *key1, void *key2)) argument
/external/openssl/crypto/aes/
H A Daes_ige.c215 const AES_KEY *key2, const unsigned char *ivec,
213 AES_bi_ige_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, const AES_KEY *key2, const unsigned char *ivec, const int enc) argument
/external/chromium_org/net/base/registry_controlled_domains/
H A Dregistry_controlled_domain_unittest.cc381 const char* key2 = local
390 EXPECT_EQ(0U, GetRegistryLengthFromHost(key2, EXCLUDE_UNKNOWN_REGISTRIES));
414 const char* key2 = local
423 EXPECT_EQ(0U, GetRegistryLengthFromHost(key2, EXCLUDE_UNKNOWN_REGISTRIES));
436 const char* key2 = "a.b.aak"; local
448 EXPECT_EQ(3U, GetRegistryLengthFromHost(key2, EXCLUDE_UNKNOWN_REGISTRIES));
473 const char* key2 = "a.b.kaa"; local
485 EXPECT_EQ(3U, GetRegistryLengthFromHost(key2, EXCLUDE_UNKNOWN_REGISTRIES));
/external/chromium_org/net/cert/
H A Dmulti_threaded_cert_verifier_unittest.cc328 MultiThreadedCertVerifier::RequestParams key2; member in struct:net::__anon9089
331 // -1 means key1 is less than key2
332 // 0 means key1 equals key2
333 // 1 means key1 is greater than key2
390 const MultiThreadedCertVerifier::RequestParams& key2 = tests[i].key2; local
394 EXPECT_TRUE(key1 < key2);
395 EXPECT_FALSE(key2 < key1);
398 EXPECT_FALSE(key1 < key2);
399 EXPECT_FALSE(key2 < key
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashFunctions.h92 inline unsigned pairIntHash(unsigned key1, unsigned key2) argument
98 uint64_t product = longRandom * (shortRandom1 * key1 + shortRandom2 * key2);
/external/chromium_org/third_party/boringssl/src/crypto/modes/
H A Dinternal.h174 void *key1, *key2; member in struct:xts128_context
/external/chromium_org/third_party/boringssl/src/crypto/rsa/
H A Drsa_test.c126 static int key2(RSA *key, unsigned char *c) { function
317 RSA *key1, *key2; local
342 key2 = RSA_new();
343 key2->n = BN_dup(key1->n);
344 key2->e = BN_dup(key1->e);
345 key2->d = BN_dup(key1->d);
348 if (!RSA_recover_crt_params(key2)) {
354 if (RSA_size(key2) > buf_len) {
358 if (!RSA_check_key(key2)) {
365 key2)) {
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dunistr_case.cpp169 uhash_compareCaselessUnicodeString(const UElement key1, const UElement key2) { argument
172 const UnicodeString *str2 = (const UnicodeString*) key2.pointer;

Completed in 9205 milliseconds

12345