Home
last modified time | relevance | path

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

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DDESede.java336 byte[] longKey = new byte[24]; in engineGetKeySpec()
338 System.arraycopy(bytes, 0, longKey, 0, 16); in engineGetKeySpec()
339 System.arraycopy(bytes, 0, longKey, 16, 8); in engineGetKeySpec()
341 return new DESedeKeySpec(longKey); in engineGetKeySpec()
/external/skia/tests/
DEncodeTest.cpp187 std::string longKey(PNG_KEYWORD_MAX_LENGTH, 'x'); in testPngComments() local
189 commentStrings.push_back(longKey); in testPngComments()
192 commentStrings.push_back(longKey + "x"); in testPngComments()
223 std::string longKeyRecord = "tEXt" + longKey; // A snippet of our long key comment in testPngComments()
224 std::string tooLongRecord = "tExt" + longKey + "x"; // A snippet whose key is too long in testPngComments()