Home
last modified time | relevance | path

Searched refs:longKey (Results 1 – 5 of 5) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DDESede.java339 byte[] longKey = new byte[24]; in engineGetKeySpec()
341 System.arraycopy(bytes, 0, longKey, 0, 16); in engineGetKeySpec()
342 System.arraycopy(bytes, 0, longKey, 16, 8); in engineGetKeySpec()
344 return new DESedeKeySpec(longKey); in engineGetKeySpec()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/symmetric/
DDESede.java366 byte[] longKey = new byte[24]; in engineGetKeySpec()
368 System.arraycopy(bytes, 0, longKey, 0, 16); in engineGetKeySpec()
369 System.arraycopy(bytes, 0, longKey, 16, 8); in engineGetKeySpec()
371 return new DESedeKeySpec(longKey); in engineGetKeySpec()
/external/skqp/tests/
DEncodeTest.cpp188 std::string longKey(PNG_KEYWORD_MAX_LENGTH, 'x'); in testPngComments() local
190 commentStrings.push_back(longKey); in testPngComments()
193 commentStrings.push_back(longKey + "x"); in testPngComments()
224 std::string longKeyRecord = "tEXt" + longKey; // A snippet of our long key comment in testPngComments()
225 std::string tooLongRecord = "tExt" + longKey + "x"; // A snippet whose key is too long in testPngComments()
/external/skia/tests/
DEncodeTest.cpp193 std::string longKey(PNG_KEYWORD_MAX_LENGTH, 'x'); in testPngComments() local
195 commentStrings.push_back(longKey); in testPngComments()
198 commentStrings.push_back(longKey + "x"); in testPngComments()
229 std::string longKeyRecord = "tEXt" + longKey; // A snippet of our long key comment in testPngComments()
230 std::string tooLongRecord = "tExt" + longKey + "x"; // A snippet whose key is too long in testPngComments()
/external/opencensus-java/api/src/test/java/io/opencensus/trace/
DTracestateTest.java87 String longKey = new String(chars); in invalidKeySize() local
89 EMPTY.toBuilder().set(longKey, FIRST_VALUE).build(); in invalidKeySize()