HomeSort by relevance Sort by last modified time
    Searched refs:key_length (Results 1 - 25 of 42) sorted by null

1 2

  /system/bt/btif/include/
btif_storage.h 212 uint8_t key_length);
215 int key_length);
218 uint8_t key_length);
  /external/webrtc/talk/session/media/
externalhmac.h 66 int key_length; member in struct:__anon36901
externalhmac.cc 141 state->key_length = key_len;
  /system/keymaster/
hmac.h 34 bool Init(const uint8_t* key, size_t key_length);
openssl_utils.cpp 82 keymaster_error_t convert_pkcs8_blob_to_evp(const uint8_t* key_data, size_t key_length,
85 if (key_data == NULL || key_length <= 0)
89 d2i_PKCS8_PRIV_KEY_INFO(NULL, &key_data, key_length));
openssl_utils.h 85 keymaster_error_t convert_pkcs8_blob_to_evp(const uint8_t* key_data, size_t key_length,
android_keymaster_test_utils.h 311 void set_key_blob(const uint8_t* key, size_t key_length) {
314 blob_.key_material_size = key_length;
403 const size_t key_length, uint8_t** key_blob,
407 device(dev)->import_keypair(device(dev), key, key_length, key_blob, key_blob_length);
  /external/curl/lib/
hash.h 33 size_t key_length,
87 size_t Curl_hash_str(void* key, size_t key_length, size_t slots_num);
hash.c 294 size_t Curl_hash_str(void* key, size_t key_length, size_t slots_num)
297 const char *end = key_str + key_length;
  /external/libchrome/crypto/
hmac.h 42 // Initializes this instance using |key| of the length |key_length|. Call Init
52 bool Init(const unsigned char* key, size_t key_length) WARN_UNUSED_RESULT;
hmac_nss.cc 43 bool HMAC::Init(const unsigned char *key, size_t key_length) {
61 key_item.len = key_length;
  /external/wpa_supplicant_8/src/common/
eapol_common.h 66 /* Note: key_length is unaligned */
67 u8 key_length[2]; member in struct:ieee802_1x_eapol_key
81 * key field (of key_length bytes) contains the key in encrypted form;
82 * if packet body length = 44, key field is absent and key_length
  /system/security/softkeymaster/include/keymaster/
softkeymaster.h 26 const size_t key_length, uint8_t** key_blob, size_t* key_blob_length);
  /system/gatekeeper/include/gatekeeper/
gatekeeper.h 90 const uint8_t *key, uint32_t key_length, const uint8_t *password,
107 const uint8_t *key, uint32_t key_length, const uint8_t *message,
  /system/core/trusty/keymaster/
trusty_keymaster_device.h 51 int import_keypair(const uint8_t* key, const size_t key_length, uint8_t** key_blob,
93 keymaster_error_t GetPkcs8KeyAlgorithm(const uint8_t* key, size_t key_length,
104 const size_t key_length, uint8_t** key_blob, size_t* key_blob_length);
trusty_keymaster_device.cpp 195 int TrustyKeymasterDevice::import_keypair(const uint8_t* key, const size_t key_length,
210 keymaster_error_t err = GetPkcs8KeyAlgorithm(key, key_length, &algorithm);
215 request.SetKeyMaterial(key, key_length);
230 keymaster_error_t TrustyKeymasterDevice::GetPkcs8KeyAlgorithm(const uint8_t* key, size_t key_length,
238 d2i_PKCS8_PRIV_KEY_INFO(NULL, &key, key_length));
407 const size_t key_length, uint8_t** key_blob,
409 return convert_device(dev)->import_keypair(key, key_length, key_blob, key_blob_length);
  /hardware/libhardware/include/hardware/
keymaster0.h 68 const uint8_t* key, const size_t key_length,
keymaster1.h 67 const size_t key_length, uint8_t** key_blob, size_t* key_blob_length);
  /external/jemalloc/test/include/test/
SFMT.h 78 sfmt_t *init_by_array(uint32_t *init_key, int key_length);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_randommodule.c 29 or init_by_array(init_key, key_length).
169 /* key_length is its length */
171 init_by_array(RandomObject *self, unsigned long init_key[], unsigned long key_length)
179 k = (N>key_length ? N : key_length);
186 if (j>=key_length) j=0;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_randommodule.c 29 or init_by_array(init_key, key_length).
169 /* key_length is its length */
171 init_by_array(RandomObject *self, unsigned long init_key[], unsigned long key_length)
179 k = (N>key_length ? N : key_length);
186 if (j>=key_length) j=0;
  /system/vold/
cryptfs.h 250 int cryptfs_create_default_ftr(struct crypt_mnt_ftr* ftr, int key_length);
  /system/bt/btif/src/
btif_storage.cc     [all...]
  /external/clang/tools/scan-build-py/libear/
ear.c 493 size_t const key_length = strlen(key); local
496 if ((0 == strncmp(*it, key, key_length)) &&
497 (strlen(*it) > key_length) && ('=' == (*it)[key_length]))
502 size_t const env_length = key_length + value_length + 2;
  /external/jemalloc/test/src/
SFMT.c 636 * @param key_length the length of init_key.
638 sfmt_t *init_by_array(uint32_t *init_key, int key_length) {
666 if (key_length + 1 > N32) {
667 count = key_length + 1;
674 r += key_length;
679 for (i = 1, j = 0; (j < count) && (j < key_length); j++) {

Completed in 744 milliseconds

1 2