HomeSort by relevance Sort by last modified time
    Searched refs:key2 (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/openssl/crypto/des/
des3s.cpp 39 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,key3)
    [all...]
str2key.c 102 void DES_string_to_2keys(const char *str, DES_cblock *key1, DES_cblock *key2)
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)[7] ^= 0xF0
    [all...]
read2pwd.c 129 int DES_read_2passwords(DES_cblock *key1, DES_cblock *key2, const char *prompt,
136 DES_string_to_2keys(buf,key1,key2);
des_old.c 233 int _ossl_old_des_read_2passwords(_ossl_old_des_cblock *key1, _ossl_old_des_cblock *key2,
236 return DES_read_2passwords(key1, key2, prompt, verify);
258 void _ossl_old_des_string_to_2keys(char *str,_ossl_old_des_cblock *key1,_ossl_old_des_cblock *key2)
260 DES_string_to_2keys(str, key1, key2);
  /external/dropbear/libtomcrypt/testprof/
dsa_test.c 10 dsa_key key, key2; local
49 DO(dsa_import(out2, x, &key2));
52 DO(dsa_verify_hash(out, x, msg, sizeof(msg), &stat1, &key2));
54 dsa_free(&key2);
60 DO(dsa_import(out2, x, &key2));
62 DO(dsa_verify_hash(out, x, msg, sizeof(msg), &stat1, &key2));
64 dsa_free(&key2);
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
TwoKeyHashMap.java 125 * @param key2
128 public V remove(Object key1, Object key2) {
129 Entry<E, K, V> e = removeEntry(key1, key2);
137 * @param key2
141 public V put(E key1, K key2, V value) {
142 if (key1 == null && key2 == null) {
156 int hash = key1.hashCode() + key2.hashCode();
162 && key2.equals(e.getKey2())) {
170 arr[index] = createEntry(hash, key1, key2, value, arr[index]);
217 * Returns true if this map contains a mapping for {@code key1} and {@code key2}
292 K key2; field in class:TwoKeyHashMap.Entry
    [all...]
  /external/chromium/third_party/icu/source/common/
uhash_us.cpp 37 uhash_compareUnicodeString(const UHashTok key1, const UHashTok key2) {
40 const UnicodeString *str2 = (const UnicodeString*) key2.pointer;
uhash.h 115 * @param key2 A key stored in a hashtable
119 const UHashTok key2);
599 * @param key2 The string for comparison
600 * @return true if key1 and key2 are equal, return false otherwise.
603 uhash_compareUChars(const UHashTok key1, const UHashTok key2);
609 * @param key2 The string for comparison
610 * @return true if key1 and key2 are equal, return false otherwise.
613 uhash_compareChars(const UHashTok key1, const UHashTok key2);
619 * @param key2 The string for comparison
620 * @return true if key1 and key2 are equal, return false otherwise
    [all...]
unistr_case.cpp 242 uhash_compareCaselessUnicodeString(const UHashTok key1, const UHashTok key2) {
245 const UnicodeString *str2 = (const UnicodeString*) key2.pointer;
  /external/icu4c/common/
uhash_us.cpp 37 uhash_compareUnicodeString(const UHashTok key1, const UHashTok key2) {
40 const UnicodeString *str2 = (const UnicodeString*) key2.pointer;
uhash.h 115 * @param key2 A key stored in a hashtable
119 const UHashTok key2);
599 * @param key2 The string for comparison
600 * @return true if key1 and key2 are equal, return false otherwise.
603 uhash_compareUChars(const UHashTok key1, const UHashTok key2);
609 * @param key2 The string for comparison
610 * @return true if key1 and key2 are equal, return false otherwise.
613 uhash_compareChars(const UHashTok key1, const UHashTok key2);
619 * @param key2 The string for comparison
620 * @return true if key1 and key2 are equal, return false otherwise
    [all...]
unistr_case.cpp 241 uhash_compareCaselessUnicodeString(const UHashTok key1, const UHashTok key2) {
244 const UnicodeString *str2 = (const UnicodeString*) key2.pointer;
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
DESedeEngine.java 58 byte[] key2 = new byte[8];
59 System.arraycopy(keyMaster, 8, key2, 0, key2.length);
60 workingKey2 = generateWorkingKey(!encrypting, key2);
  /dalvik/vm/
AtomicCache.h 17 * Mutex-free cache for key1+key2=value.
36 u4 key2; member in struct:AtomicCacheEntry
107 if (pEntry->key1 == (u4)(_key1) && pEntry->key2 == (u4)(_key2)) { \
161 void dvmUpdateAtomicCache(u4 key1, u4 key2, u4 value, AtomicCacheEntry* pEntry,
AtomicCache.c 86 void dvmUpdateAtomicCache(u4 key1, u4 key2, u4 value, AtomicCacheEntry* pEntry,
144 pEntry->key2 = key2;
  /libcore/luni/src/test/java/tests/security/spec/
EncodedKeySpec2Test.java 75 private boolean isEqual(Key key1, Key key2) {
76 if (key1 instanceof DSAPublicKey && key2 instanceof DSAPublicKey) {
78 DSAPublicKey dsa2 = ((DSAPublicKey) key2);
85 && key2 instanceof DSAPrivateKey) {
87 DSAPrivateKey dsa2 = ((DSAPrivateKey) key2);
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_SettingsTest.java 102 String key2 = "key 2"; local
105 Settings.setSetting(mContentResolver, "account", key2, value2);
107 assertEquals(value2, Settings.getSetting(mContentResolver, "account", key2));
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509NameElementList.java 24 private DERObjectIdentifier key2; field in class:X509NameElementList
95 key2 = key;
151 case 2: return key2;
  /external/v8/src/
data-flow.h 72 static bool VarMatch(void* key1, void* key2) { return key1 == key2; }
hashmap.h 49 typedef bool (*MatchFun) (void* key1, void* key2);
  /external/chromium/net/base/
host_cache_unittest.cc 280 HostCache::Key key2("foobar.com", ADDRESS_FAMILY_IPV4);
283 const HostCache::Entry* entry2 = NULL; // Entry for key2
295 EXPECT_TRUE(cache.Lookup(key2, base::TimeTicks()) == NULL);
296 cache.Set(key2, OK, AddressList(), now);
297 entry2 = cache.Lookup(key2, base::TimeTicks());
347 HostCache::Key key2; member in struct:net::__anon2532
350 // -1 means key1 is less than key2
351 // 0 means key1 equals key2
352 // 1 means key1 is greater than key2
391 const HostCache::Key& key2 = tests[i].key2 local
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
uvectest.cpp 70 UVectorTest_compareInt32(UHashTok key1, UHashTok key2) {
71 if (key1.integer > key2.integer) {
74 else if (key1.integer < key2.integer) {
82 UVectorTest_compareCstrings(const UHashTok key1, const UHashTok key2) {
83 return !strcmp((const char *)key1.pointer, (const char *)key2.pointer);
164 static UBool U_CALLCONV neverTRUE(const UHashTok /*key1*/, const UHashTok /*key2*/) {
  /external/icu4c/test/intltest/
uvectest.cpp 70 UVectorTest_compareInt32(UHashTok key1, UHashTok key2) {
71 if (key1.integer > key2.integer) {
74 else if (key1.integer < key2.integer) {
82 UVectorTest_compareCstrings(const UHashTok key1, const UHashTok key2) {
83 return !strcmp((const char *)key1.pointer, (const char *)key2.pointer);
164 static UBool U_CALLCONV neverTRUE(const UHashTok /*key1*/, const UHashTok /*key2*/) {
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
OrderedTable.java 28 private DERObjectIdentifier key2; field in class:OrderedTable
87 key2 = key;
195 case 2: return key2;
  /external/srec/portable/include/
phashtable.h 80 * key2 and non-zero otherwise. The hash function and the comparison function
85 typedef int (*PHashCompFunction)(const LCHAR *key1, const LCHAR *key2);

Completed in 839 milliseconds

1 2 3 4