HomeSort by relevance Sort by last modified time
    Searched defs:keyLength (Results 1 - 24 of 24) sorted by null

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
PBKDF2Params.java 20 DERInteger keyLength;
56 keyLength = (DERInteger)e.nextElement();
60 keyLength = null;
76 if (keyLength != null)
78 return keyLength.getValue();
91 if (keyLength != null)
93 v.add(keyLength);
  /external/icu4c/i18n/
rbt_rule.h 59 // TODO Eliminate the pattern and keyLength data members. They
62 // methods and pattern/keyLength can be isolated into a separate
93 * @see keyLength
122 * anteContextLength + keyLength) is the key.
125 int32_t keyLength;
colldata.cpp 516 int32_t keyLength = KEY_BUFFER_SIZE;
517 char *key = getKey(collator, keyBuffer, &keyLength);
527 newData = new CollData(collator, key, keyLength, status);
zstrfmt.cpp 272 int32_t keyLength;
277 keyLength = foldedKey.length();
280 keyLength = key.length();
285 for (index = 0; index < keyLength; ++index) {
    [all...]
  /libcore/luni/src/main/java/javax/crypto/spec/
PBEKeySpec.java 35 private final int keyLength;
52 keyLength = 0;
65 * @param keyLength
74 int keyLength) {
84 if (keyLength <= 0) {
85 throw new IllegalArgumentException("keyLength <= 0");
97 this.keyLength = keyLength;
135 this.keyLength = 0;
192 return keyLength;
    [all...]
  /libcore/luni/src/test/java/libcore/javax/crypto/
SecretKeyFactoryTest.java 131 int keyLength = 64;
136 test_PBKDF2(password, salt, iterations, keyLength, expected);
152 int keyLength = 192;
159 test_PBKDF2(password, salt, iterations, keyLength, expected);
162 private void test_PBKDF2(char[] password, byte[] salt, int iterations, int keyLength,
165 KeySpec ks = new PBEKeySpec(password, salt, iterations, keyLength);
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
PBEKeySpecTest.java 61 * keyLength) method testing. Tests the behavior of the method in the case
69 int keyLength = 10;
73 iterationCount, keyLength);
83 new PBEKeySpec(password, null, iterationCount, keyLength);
92 new PBEKeySpec(password, new byte [0], iterationCount, keyLength);
99 new PBEKeySpec(password, salt, -1, keyLength);
108 + "in the case of negative keyLength.");
113 new PBEKeySpec(password, salt, 0, keyLength);
122 + "in the case of zero keyLength.");
127 iterationCount, keyLength);
    [all...]
  /frameworks/base/drm/java/android/drm/
DrmUtils.java 157 int keyLength = readByte(constraintData, index);
165 String strKey = readMultipleBytes(constraintData, keyLength, index);
166 index += keyLength;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
PBEKeySpecTest.java 61 * keyLength) method testing. Tests the behavior of the method in the case
69 int keyLength = 10;
73 iterationCount, keyLength);
83 new PBEKeySpec(password, null, iterationCount, keyLength);
92 new PBEKeySpec(password, new byte [0], iterationCount, keyLength);
99 new PBEKeySpec(password, salt, -1, keyLength);
108 + "in the case of negative keyLength.");
113 new PBEKeySpec(password, salt, 0, keyLength);
122 + "in the case of zero keyLength.");
127 iterationCount, keyLength);
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
BlowfishEngine.java 455 int keyLength = key.length;
468 if (keyIndex >= keyLength)
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherThread.java 33 private int keyLength = 0;
64 keyLength = getNextKey();
108 return keyLength;
124 return "Alg name:" + algName + " Key:" + keyLength + " Mode:" + mode +
  /external/icu4c/common/
normalizer2.cpp 590 int32_t keyLength=uprv_strlen(name)+1;
591 char *nameCopy=(char *)uprv_malloc(keyLength);
596 uprv_memcpy(nameCopy, name, keyLength);
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/
OpenWnnDictionaryImplJni.c     [all...]
  /libcore/luni/src/main/java/java/util/
Properties.java 283 int offset = 0, keyLength = -1, intVal;
372 if (offset > 0 || (offset == 0 && keyLength == 0)) {
373 if (keyLength == -1) {
374 keyLength = offset;
377 put(temp.substring(0, keyLength), temp
378 .substring(keyLength));
380 keyLength = -1;
385 keyLength = offset;
391 if (keyLength == -1) { // if parsing the key
393 keyLength = offset
    [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/common/http-client/
httpclient-4.1.1.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 343 milliseconds