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

1 2 3

  /external/icu/icu4c/source/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;
tznames_impl.cpp 216 int32_t keyLength;
221 keyLength = foldedKey.length();
224 keyLength = key.length();
229 for (index = 0; index < keyLength; ++index) {
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PBKDF2Params.java 25 * keyLength INTEGER (1..MAX) OPTIONAL,
36 private ASN1Integer keyLength;
76 * Create a PBKDF2Params with the specified salt, iteration count, keyLength, and algid-hmacWithSHA1 for the prf.
80 * @param keyLength intended key length to be produced.
85 int keyLength)
89 this.keyLength = new ASN1Integer(keyLength);
93 * Create a PBKDF2Params with the specified salt, iteration count, keyLength, and a defined prf.
97 * @param keyLength intended key length to be produced.
103 int keyLength,
    [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...]
  /external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/
WebSocketProtocol.java 86 int keyLength = key.length;
88 int keyIndex = (int) (frameBytesRead % keyLength);
  /libcore/luni/src/test/java/libcore/javax/crypto/
SecretKeyFactoryTest.java 133 int keyLength = 64;
138 test_PBKDF2_UTF8(password, salt, iterations, keyLength, expected);
139 test_PBKDF2_8BIT(password, salt, iterations, keyLength, expected);
155 int keyLength = 192;
162 test_PBKDF2_UTF8(password, salt, iterations, keyLength, expected);
163 test_PBKDF2_8BIT(password, salt, iterations, keyLength, expected);
176 int keyLength = 160;
189 test_PBKDF2_UTF8(password, salt, iterations, keyLength, expected_utf8);
190 test_PBKDF2_8BIT(password, salt, iterations, keyLength, expected_8bit);
193 private void test_PBKDF2_8BIT(char[] password, byte[] salt, int iterations, int keyLength,
    [all...]
  /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...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
HMac.java 121 int keyLength = key.length;
123 if (keyLength > blockLength)
125 digest.update(key, 0, keyLength);
128 keyLength = digestSize;
132 System.arraycopy(key, 0, inputPad, 0, keyLength);
135 for (int i = keyLength; i < inputPad.length; i++)
  /external/skia/src/gpu/
GrProgramDesc.h 30 uint32_t keyLength() const { return *this->atOffset<uint32_t, kLengthOffset>(); }
36 uint32_t keyLength = other.keyLength();
37 fKey.reset(SkToInt(keyLength));
38 memcpy(fKey.begin(), other.fKey.begin(), keyLength);
44 return 0 == memcmp(this->asKey(), other.asKey(), this->keyLength() & ~0x3);
52 return memcmp(a.asKey(), b.asKey(), a.keyLength() & ~0x3) < 0;
88 int keyLength = fKey.count();
89 SkASSERT(0 == (keyLength % 4));
90 *(this->atOffset<uint32_t, GrProgramDesc::kLengthOffset>()) = SkToU32(keyLength);
    [all...]
  /frameworks/base/drm/java/android/drm/
DrmUtils.java 156 int keyLength = readByte(constraintData, index);
164 String strKey = readMultipleBytes(constraintData, keyLength, index);
165 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/bcprov/src/main/java/org/bouncycastle/crypto/engines/
BlowfishEngine.java 456 int keyLength = key.length;
469 if (keyIndex >= keyLength)
  /external/icu/icu4c/source/common/
loadednormalizer2impl.cpp 247 int32_t keyLength=uprv_strlen(name)+1;
248 char *nameCopy=(char *)uprv_malloc(keyLength);
253 uprv_memcpy(nameCopy, name, keyLength);
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliterationRule.java 46 // TODO Eliminate the pattern and keyLength data members. They
49 // methods and pattern/keyLength can be isolated into a separate
80 * @see keyLength
102 * anteContextLength + keyLength) is the key.
104 private int keyLength;
171 keyLength = input.length() - anteContextLength;
177 keyLength = postContextPos - anteContextLength;
207 if (keyLength > 0) {
208 key = new StringMatcher(pattern.substring(anteContextLength, anteContextLength + keyLength),
212 int postContextLength = pattern.length() - keyLength - anteContextLength
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherThread.java 33 private int keyLength = 0;
78 keyLength = getNextKey();
122 return keyLength;
138 return "Alg name:" + algName + " Key:" + keyLength + " Mode:" + mode +
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/header/
header_read_write_utils.cpp 81 const int keyLength = ByteArrayUtils::readStringAndAdvancePosition(dictBuf,
84 key.insert(key.end(), keyBuffer, keyBuffer + 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...]
  /frameworks/base/core/jni/
android_hardware_camera2_CameraMetadata.cpp 790 size_t keyLength = strlen(key);
849 if (sectionLength + 1 >= keyLength) {
  /system/security/keystore/
IKeystoreService.cpp 654 size_t keyLength = item->size();
655 data.writeInt32(keyLength);
656 void* buf = data.writeInplace(keyLength);
657 memcpy(buf, item->data(), keyLength);
673 virtual int32_t import(const String16& name, const uint8_t* key, size_t keyLength, int uid,
679 data.writeInt32(keyLength);
680 void* buf = data.writeInplace(keyLength);
681 memcpy(buf, key, keyLength);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.registry_3.5.0.v20100503.jar 
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar 
org.apache.jasper_5.5.17.v201004212143.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.registry_3.5.301.v20130717-1549.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.registry_3.5.300.v20130327-1442.jar 

Completed in 762 milliseconds

1 2 3