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

12

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
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;
H A DDESedeKeyGenerator.java44 byte[] newKey = new byte[strength];
48 random.nextBytes(newKey);
50 DESedeParameters.setOddParity(newKey);
52 while (DESedeParameters.isWeakKey(newKey, 0, newKey.length));
54 return newKey;
/external/guava/guava-tests/test/com/google/common/cache/
H A DPopulatedCachesTest.java93 Object newKey = new Object();
94 assertNull(cache.asMap().put(newKey, entry.getValue()));
97 assertEquals(entry.getValue(), cache.getUnchecked(newKey));
99 warmed.add(entryOf(newKey, entry.getValue()));
114 Object newKey = new Object();
115 assertNull(cache.asMap().putIfAbsent(newKey, entry.getValue()));
118 assertEquals(entry.getValue(), cache.getUnchecked(newKey));
120 warmed.add(entryOf(newKey, entry.getValue()));
131 Object newKey = new Object();
133 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.cpp547 int32_t newKey = keyChar | tableFlag;
549 newKey |= USPOOF_KEY_MULTIPLE_VALUES;
555 newKey |= adjustedMappingLength << USPOOF_KEY_LENGTH_SHIFT;
559 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/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLSignature.java128 private void initInternal(OpenSSLKey newKey, boolean signing) throws InvalidKeyException { argument
129 checkEngineType(newKey);
130 key = newKey;
/external/skia/src/gpu/
H A DGrResourceCache.cpp289 void GrResourceCache::changeUniqueKey(GrGpuResource* resource, const GrUniqueKey& newKey) { argument
301 if (newKey.isValid()) {
302 if (GrGpuResource* old = fUniqueHash.find(newKey)) {
310 fUniqueHash.remove(newKey);
314 SkASSERT(NULL == fUniqueHash.find(newKey));
315 resource->cacheAccess().setUniqueKey(newKey);
H A DGrResourceCache.h345 void changeUniqueKey(GrGpuResource* resource, const GrUniqueKey& newKey) { argument
346 fCache->changeUniqueKey(resource, newKey);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DACBTree.h33 + (ACBKey *)newKey; variable
/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/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DSpoofChecker.java1281 int newKey = keyChar | tableFlag;
1283 newKey |= SpoofChecker.KEY_MULTIPLE_VALUES;
1289 newKey |= adjustedMappingLength << SpoofChecker.KEY_LENGTH_SHIFT;
1293 fKeyVec.add(newKey);
/external/sqlite/dist/orig/
H A Dsqlite3.h6864 ** previously contains an entry associated with newKey, it must be
6865 ** discarded. ^Any prior cache entry associated with newKey is guaranteed not
6899 unsigned oldKey, unsigned newKey);
6920 void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);
/external/sqlite/dist/
H A Dsqlite3.h6864 ** previously contains an entry associated with newKey, it must be
6865 ** discarded. ^Any prior cache entry associated with newKey is guaranteed not
6899 unsigned oldKey, unsigned newKey);
6920 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 ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 1855 milliseconds

12