/external/openssl/crypto/asn1/ |
p5_pbev2.c | 77 ASN1_OPT(PBKDF2PARAM, keylength, ASN1_INTEGER), 237 if(!(kdf->keylength = M_ASN1_INTEGER_new())) 239 if(!ASN1_INTEGER_set (kdf->keylength, keylen))
|
/external/llvm/include/llvm/ADT/ |
StringMap.h | 145 unsigned KeyLength = Key.size(); 150 KeyLength+1; 157 new (NewItem) StringMapEntry(KeyLength, std::move(InitVal)); 161 memcpy(StrBuffer, Key.data(), KeyLength); 162 StrBuffer[KeyLength] = 0; // Null terminate for convenience of clients.
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
ntddcdvd.h | 137 ULONG KeyLength;
|
iscsidsc.h | 718 ULONG KeyLength,
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/header/ |
header_read_write_utils.cpp | 78 const int keyLength = ByteArrayUtils::readStringAndAdvancePosition(dictBuf, 81 key.insert(key.end(), keyBuffer, keyBuffer + keyLength);
|
/system/security/keystore/ |
IKeystoreService.cpp | 301 size_t keyLength = item->size(); 302 data.writeInt32(keyLength); 303 void* buf = data.writeInplace(keyLength); 304 memcpy(buf, item->data(), keyLength); 320 virtual int32_t import(const String16& name, const uint8_t* key, size_t keyLength, int uid, 326 data.writeInt32(keyLength); 327 void* buf = data.writeInplace(keyLength); 328 memcpy(buf, key, keyLength); [all...] |
/external/conscrypt/src/main/java/org/conscrypt/ |
OpenSSLCipher.java | 592 protected void checkSupportedKeySize(int keyLength) throws InvalidKeyException { 593 switch (keyLength) { 599 throw new InvalidKeyException("Unsupported key size: " + keyLength + " bytes"); 637 protected String getCipherName(int keyLength, Mode mode) { 638 return "aes-" + (keyLength * 8) + "-" + mode.toString().toLowerCase(Locale.US);
|
/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
p5_crpt2.c | 271 if(kdf->keylength && (ASN1_INTEGER_get(kdf->keylength) != (int)keylen)){
|
evp_err.c | 228 {ERR_REASON(EVP_R_UNSUPPORTED_KEYLENGTH) ,"unsupported keylength"},
|
/external/openssl/crypto/evp/ |
p5_crpt2.c | 293 if(kdf->keylength && (ASN1_INTEGER_get(kdf->keylength) != (int)keylen)){
|
evp_err.c | 217 {ERR_REASON(EVP_R_UNSUPPORTED_KEYLENGTH) ,"unsupported keylength"},
|
/external/icu/icu4c/source/test/intltest/ |
collationtest.cpp | [all...] |
/external/chromium_org/third_party/WebKit/public/platform/ |
WebMediaPlayer.h | 155 virtual MediaKeyException addKey(const WebString& keySystem, const unsigned char* key, unsigned keyLength, const unsigned char* initData, unsigned initDataLength, const WebString& sessionId) { return MediaKeyExceptionKeySystemNotSupported; }
|
/external/chromium_org/third_party/tlslite/tlslite/ |
tlsrecordlayer.py | [all...] |
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/ |
OpenWnnDictionaryImplJni.c | [all...] |
/external/chromium_org/third_party/icu/source/common/ |
normalizer2.cpp | 590 int32_t keyLength=uprv_strlen(name)+1; 591 char *nameCopy=(char *)uprv_malloc(keyLength); 596 uprv_memcpy(nameCopy, name, keyLength);
|
/external/chromium_org/third_party/icu/source/i18n/ |
colldata.cpp | 521 int32_t keyLength = KEY_BUFFER_SIZE; 522 char *key = getKey(collator, keyBuffer, &keyLength); 532 newData = new CollData(collator, key, keyLength, status);
|
/external/icu/icu4c/source/common/ |
normalizer2.cpp | 664 int32_t keyLength=uprv_strlen(name)+1; 665 char *nameCopy=(char *)uprv_malloc(keyLength); 670 uprv_memcpy(nameCopy, name, keyLength); [all...] |
/external/chromium_org/third_party/openssl/openssl/ssl/ |
ssl_lib.c | [all...] |
/external/icu/icu4c/source/i18n/ |
tznames_impl.cpp | 186 int32_t keyLength; 191 keyLength = foldedKey.length(); 194 keyLength = key.length(); 199 for (index = 0; index < keyLength; ++index) { [all...] |
/external/openssl/ssl/ |
ssl_lib.c | [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
BlowfishEngine.java | 456 int keyLength = key.length; 469 if (keyIndex >= keyLength)
|
/frameworks/base/core/jni/ |
android_hardware_camera2_CameraMetadata.cpp | 631 size_t keyLength = strlen(key); 685 if (sectionLength + 1 >= keyLength) {
|
/external/conscrypt/src/main/native/ |
org_conscrypt_NativeCrypto.cpp | [all...] |
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
ssl.h | [all...] |