Searched refs:newKey (Results 1 - 25 of 55) sorted by relevance

123

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DDESedeKeyGenerator.java46 byte[] newKey = new byte[strength];
51 random.nextBytes(newKey);
53 DESedeParameters.setOddParity(newKey);
55 while (++count < MAX_IT && (DESedeParameters.isWeakKey(newKey, 0, newKey.length) || !DESedeParameters.isRealEDEKey(newKey, 0)));
57 if (DESedeParameters.isWeakKey(newKey, 0, newKey.length) || !DESedeParameters.isRealEDEKey(newKey, 0))
62 return newKey;
[all...]
H A DDESKeyGenerator.java36 byte[] newKey = new byte[DESParameters.DES_KEY_LENGTH];
40 random.nextBytes(newKey);
42 DESParameters.setOddParity(newKey);
44 while (DESParameters.isWeakKey(newKey, 0));
46 return newKey;
/external/guice/extensions/dagger-adapter/src/com/google/inject/daggeradapter/
H A DDaggerMethodScanner.java69 Key<T> newKey = Key.get(key.getTypeLiteral(), UniqueAnnotations.create());
70 setBinder.addBinding().to(newKey);
71 return newKey;
/external/guava/guava-tests/test/com/google/common/cache/
H A DPopulatedCachesTest.java92 Object newKey = new Object();
93 assertNull(cache.asMap().put(newKey, entry.getValue()));
96 assertEquals(entry.getValue(), cache.getUnchecked(newKey));
98 warmed.add(entryOf(newKey, entry.getValue()));
113 Object newKey = new Object();
114 assertNull(cache.asMap().putIfAbsent(newKey, entry.getValue()));
117 assertEquals(entry.getValue(), cache.getUnchecked(newKey));
119 warmed.add(entryOf(newKey, entry.getValue()));
130 Object newKey = new Object();
132 cache.asMap().putAll(ImmutableMap.of(newKey, newValu
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DOutputPropertiesFactory.java461 String newKey = fixupPropertyString(key, true);
465 newValue = System.getProperty(newKey);
476 if (key != newKey || value != newValue)
479 props.put(newKey, newValue);
/external/icu/icu4c/source/i18n/
H A Dtznames.cpp153 char *newKey = NULL; local
160 newKey = (char *)uprv_malloc(uprv_strlen(key) + 1);
161 if (newKey == NULL) {
164 uprv_strcpy(newKey, key);
176 uhash_put(gTimeZoneNamesCache, newKey, cacheEntry, &status);
183 if (newKey != NULL) {
184 uprv_free(newKey);
H A Duspoof_conf.cpp570 int32_t newKey = keyChar | tableFlag;
572 newKey |= USPOOF_KEY_MULTIPLE_VALUES;
578 newKey |= adjustedMappingLength << USPOOF_KEY_LENGTH_SHIFT;
582 fKeyVec->addElement(newKey, status);
H A Dtznames_impl.cpp1222 const UChar* newKey = ZoneMeta::findMetaZoneID(mzID); local
1223 if (newKey != NULL) {
1224 uhash_put(fMZNamesMap, (void *)newKey, cacheVal, &status);
1239 nameinfo->mzID = newKey;
1300 const UChar* newKey = ZoneMeta::findTimeZoneID(tzID); local
1301 if (newKey != NULL) {
1302 uhash_put(fTZNamesMap, (void *)newKey, cacheVal, &status);
1316 nameinfo->tzID = newKey;
1985 const UChar* newKey = ZoneMeta::findMetaZoneID(mzID); local
1986 if (newKey !
[all...]
H A Dtzgnames.cpp1253 char *newKey = NULL; local
1260 newKey = (char *)uprv_malloc(uprv_strlen(key) + 1);
1261 if (newKey == NULL) {
1264 uprv_strcpy(newKey, key);
1276 uhash_put(gTZGNCoreCache, newKey, cacheEntry, &status);
1283 if (newKey != NULL) {
1284 uprv_free(newKey);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DDESEngine.java311 int[] newKey = new int[32];
336 newKey[m] = newKey[n] = 0;
368 newKey[m] |= bigbyte[j];
373 newKey[n] |= bigbyte[j];
385 i1 = newKey[i];
386 i2 = newKey[i + 1];
388 newKey[i] = ((i1 & 0x00fc0000) << 6) | ((i1 & 0x00000fc0) << 10)
391 newKey[i + 1] = ((i1 & 0x0003f000) << 12) | ((i1 & 0x0000003f) << 16)
395 return newKey;
[all...]
H A DRC2Engine.java101 // Phase 3 - copy to newKey in little-endian order
102 int[] newKey = new int[64];
104 for (int i = 0; i != newKey.length; i++)
106 newKey[i] = (xKey[2 * i] + (xKey[2 * i + 1] << 8));
109 return newKey;
/external/skia/src/gpu/
H A DGrResourceCache.cpp297 void GrResourceCache::changeUniqueKey(GrGpuResource* resource, const GrUniqueKey& newKey) { argument
309 if (newKey.isValid()) {
310 if (GrGpuResource* old = fUniqueHash.find(newKey)) {
318 fUniqueHash.remove(newKey);
322 SkASSERT(nullptr == fUniqueHash.find(newKey));
323 resource->cacheAccess().setUniqueKey(newKey);
H A DGrResourceCache.h405 void changeUniqueKey(GrGpuResource* resource, const GrUniqueKey& newKey) { argument
406 fCache->changeUniqueKey(resource, newKey);
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLSignature.java194 private void initInternal(OpenSSLKey newKey, boolean signing) throws InvalidKeyException { argument
195 checkEngineType(newKey);
196 key = newKey;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DACBTree.h33 + (ACBKey *)newKey; variable
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
H A DCollationDummyTest.java327 CollationKey newKey = newCollation.getCollationKey(source[3]);
328 int keyResult = enKey.compareTo(newKey);
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationDummyTest.java323 CollationKey newKey = newCollation.getCollationKey(source[3]);
324 int keyResult = enKey.compareTo(newKey);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DSpoofChecker.java1265 int newKey = keyChar | tableFlag;
1267 newKey |= SpoofChecker.KEY_MULTIPLE_VALUES;
1273 newKey |= adjustedMappingLength << SpoofChecker.KEY_LENGTH_SHIFT;
1277 fKeyVec.add(newKey);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DSpoofChecker.java1302 int newKey = keyChar | tableFlag;
1304 newKey |= SpoofChecker.KEY_MULTIPLE_VALUES;
1310 newKey |= adjustedMappingLength << SpoofChecker.KEY_LENGTH_SHIFT;
1314 fKeyVec.add(newKey);
/external/sqlite/dist/orig/
H A Dsqlite3.h6954 ** previously contains an entry associated with newKey, it must be
6955 ** discarded. ^Any prior cache entry associated with newKey is guaranteed not
6989 unsigned oldKey, unsigned newKey);
7010 void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);
/external/sqlite/dist/
H A Dsqlite3.h6954 ** previously contains an entry associated with newKey, it must be
6955 ** discarded. ^Any prior cache entry associated with newKey is guaranteed not
6989 unsigned oldKey, unsigned newKey);
7010 void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources.compatibility_3.4.0.v20090505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.core.contenttype_3.5.0.v20150421-2214.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...

Completed in 750 milliseconds

123