Searched refs:keyLength (Results 1 - 25 of 35) sorted by relevance

12

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DPBKDF2Params.java26 * keyLength INTEGER (1..MAX) OPTIONAL,
37 private final ASN1Integer keyLength; field in class:PBKDF2Params
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)
87 this(salt, iterationCount, keyLength, null);
91 * Create a PBKDF2Params with the specified salt, iteration count, keyLength, and a defined prf.
95 * @param keyLength intended key length to be produced.
101 int keyLength,
107 if (keyLength >
82 PBKDF2Params( byte[] salt, int iterationCount, int keyLength) argument
98 PBKDF2Params( byte[] salt, int iterationCount, int keyLength, AlgorithmIdentifier prf) argument
[all...]
/external/skia/src/gpu/
H A DGrProgramDesc.h30 uint32_t keyLength() const { return *this->atOffset<uint32_t, kLengthOffset>(); } function in class:GrProgramDesc
36 uint32_t keyLength = other.keyLength(); local
37 fKey.reset(SkToInt(keyLength));
38 memcpy(fKey.begin(), other.fKey.begin(), keyLength);
43 SkASSERT(SkIsAlign4(this->keyLength()));
44 int l = this->keyLength() >> 2;
60 SkASSERT(SkIsAlign4(a.keyLength()));
61 int l = a.keyLength() >> 2;
107 int keyLength local
[all...]
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
H A DPBEKeySpecTest.java61 * 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/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/
H A DWebSocketProtocol.java86 int keyLength = key.length;
88 int keyIndex = (int) (frameBytesRead % keyLength);
/external/icu/icu4c/source/i18n/
H A Drbt_rule.cpp84 keyLength = input.length() - anteContextLength;
92 keyLength = postContextPos - anteContextLength;
129 if (keyLength > 0) {
130 key = new StringMatcher(pattern, anteContextLength, anteContextLength + keyLength,
139 int32_t postContextLength = pattern.length() - keyLength - anteContextLength;
142 postContext = new StringMatcher(pattern, anteContextLength + keyLength, pattern.length(),
169 keyLength(other.keyLength),
303 keyLength <= r2.keyLength
[all...]
H A Drbt_rule.h59 // 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; member in class:TransliterationRule
H A Dtznames_impl.cpp216 int32_t keyLength; local
221 keyLength = foldedKey.length();
224 keyLength = key.length();
229 for (index = 0; index < keyLength; ++index) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
H A DHMac.java121 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/icu/android_icu4j/src/main/java/android/icu/text/
H A DTransliterationRule.java47 // TODO Eliminate the pattern and keyLength data members. They
50 // methods and pattern/keyLength can be isolated into a separate
81 * @see keyLength
103 * anteContextLength + keyLength) is the key.
105 private int keyLength; field in class:TransliterationRule
172 keyLength = input.length() - anteContextLength;
178 keyLength = postContextPos - anteContextLength;
208 if (keyLength > 0) {
209 key = new StringMatcher(pattern.substring(anteContextLength, anteContextLength + keyLength),
213 int postContextLength = pattern.length() - keyLength
[all...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTransliterationRule.java46 // 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; field in class:TransliterationRule
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
[all...]
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLCipher.java679 protected void checkSupportedKeySize(int keyLength) throws InvalidKeyException { argument
680 switch (keyLength) {
686 throw new InvalidKeyException("Unsupported key size: " + keyLength
721 protected String getCipherName(int keyLength, Mode mode) { argument
722 return "aes-" + (keyLength * 8) + "-" + mode.toString().toLowerCase(Locale.US);
1082 protected abstract long getEVP_AEAD(int keyLength) throws InvalidKeyException; argument
1092 protected void checkSupportedKeySize(int keyLength) throws InvalidKeyException { argument
1093 switch (keyLength) {
1098 throw new InvalidKeyException("Unsupported key size: " + keyLength
1134 protected long getEVP_AEAD(int keyLength) throw argument
[all...]
/external/icu/icu4c/source/common/
H A Dloadednormalizer2impl.cpp247 int32_t keyLength=uprv_strlen(name)+1; local
248 char *nameCopy=(char *)uprv_malloc(keyLength);
253 uprv_memcpy(nameCopy, name, keyLength);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUResource.java45 private Key(byte[] keyBytes, int keyOffset, int keyLength) { argument
48 length = keyLength;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUResource.java43 private Key(byte[] keyBytes, int keyOffset, int keyLength) { argument
46 length = keyLength;
/external/icu/icu4c/source/test/intltest/
H A Dcollationtest.cpp1363 int32_t keyLength;
1364 const uint8_t *keyBytes = key.getByteArray(keyLength);
1365 if(keyLength == 0 || keyBytes[keyLength - 1] != 0) {
1385 for(int32_t i = 0; i < (keyLength - 1); ++i) {
1417 if(keyLength != parts.length() || uprv_memcmp(keyBytes, parts.data(), keyLength) != 0) {
1526 int32_t keyLength;
1527 const uint8_t *bytes = key.getByteArray(keyLength);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DBlowfishEngine.java456 int keyLength = key.length;
469 if (keyIndex >= keyLength)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.registry_3.5.0.v20100503.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.apache.jasper_5.5.17.v201004212143.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.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.core.resources_3.10.0.v20150423-0755.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...

Completed in 863 milliseconds

12