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

1 2 3

  /external/chromium_org/third_party/mt19937ar/
mt19937ar.h 6 or init_by_array(init_key, key_length).
57 void init_by_array(uint32 init_key[], int key_length);
mt19937ar.cc 6 or init_by_array(init_key, key_length).
77 /* key_length is its length */
79 void MersenneTwister::init_by_array(uint32 init_key[], int key_length)
84 k = (N>key_length ? N : key_length);
91 if (j>=key_length) j=0;
  /external/chromium_org/media/cdm/
json_web_key.h 36 MEDIA_EXPORT std::string GenerateJWKSet(const uint8* key, int key_length,
json_web_key.cc 59 std::string GenerateJWKSet(const uint8* key, int key_length,
62 std::string key_base64 = EncodeBase64(key, key_length);
  /external/chromium_org/net/disk_cache/simple/
simple_entry_format_history.h 40 uint32 key_length; member in struct:disk_cache::simplecache_v5::SimpleFileHeader
simple_entry_format.h 44 uint32 key_length; member in struct:disk_cache::SimpleFileHeader
  /external/chromium_org/crypto/
hmac_openssl.cc 29 bool HMAC::Init(const unsigned char* key, size_t key_length) {
33 plat_->key.assign(key, key + key_length);
34 if (key_length == 0) {
hmac.h 39 // Initializes this instance using |key| of the length |key_length|. Call Init
49 bool Init(const unsigned char* key, size_t key_length) WARN_UNUSED_RESULT;
hmac_nss.cc 42 bool HMAC::Init(const unsigned char *key, size_t key_length) {
60 key_item.len = key_length;
hmac_win.cc 112 bool HMAC::Init(const unsigned char* key, size_t key_length) {
120 plat_->raw_key_.assign(key, key + key_length);
142 size_t key_blob_size = std::max(offsetof(KeyBlob, key_data) + key_length,
150 key_blob->key_size = static_cast<DWORD>(key_length);
151 memcpy(key_blob->key_data, key, key_length);
161 SecureZeroMemory(key_blob->key_data, key_length);
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
externalhmac.h 64 int key_length; member in struct:__anon16413
  /external/chromium_org/third_party/leveldatabase/src/db/
memtable.cc 123 uint32_t key_length; local
124 const char* key_ptr = GetVarint32Ptr(entry, entry+5, &key_length);
126 Slice(key_ptr, key_length - 8),
129 const uint64_t tag = DecodeFixed64(key_ptr + key_length - 8);
132 Slice v = GetLengthPrefixedSlice(key_ptr + key_length);
  /external/chromium_org/third_party/openssl/openssl/crypto/hmac/
hmac.c 112 &ctx->key_length))
119 ctx->key_length=len;
121 if(ctx->key_length != HMAC_MAX_MD_CBLOCK)
122 memset(&ctx->key[ctx->key_length], 0,
123 HMAC_MAX_MD_CBLOCK - ctx->key_length);
203 dctx->key_length = sctx->key_length;
hmac.h 81 unsigned int key_length; member in struct:hmac_ctx_st
  /external/openssl/crypto/hmac/
hmac.c 112 &ctx->key_length))
119 ctx->key_length=len;
121 if(ctx->key_length != HMAC_MAX_MD_CBLOCK)
122 memset(&ctx->key[ctx->key_length], 0,
123 HMAC_MAX_MD_CBLOCK - ctx->key_length);
203 dctx->key_length = sctx->key_length;
hmac.h 81 unsigned int key_length; member in struct:hmac_ctx_st
  /external/bluetooth/bluedroid/btif/include/
btif_storage.h 321 uint8_t key_length);
325 int key_length);
329 uint8_t 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);
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
hmac.h 81 unsigned int key_length; member in struct:hmac_ctx_st
  /external/openssl/include/openssl/
hmac.h 81 unsigned int key_length; member in struct:hmac_ctx_st
  /external/chromium_org/content/renderer/media/crypto/
proxy_decryptor.h 78 void AddKey(const uint8* key, int key_length,
proxy_decryptor.cc 137 int key_length,
182 media::GenerateJWKSet(key, key_length, init_data, init_data_length);
191 media_keys_->UpdateSession(session_id, key, key_length, promise.Pass());
  /external/jemalloc/test/include/test/
SFMT.h 78 sfmt_t *init_by_array(uint32_t *init_key, int key_length);
  /external/chromium_org/ui/base/accelerators/
accelerator.cc 253 int key_length = static_cast<int>(shortcut_rtl.length()); local
254 DCHECK_GT(key_length, 0);
258 shortcut_rtl.append(shortcut, 0, shortcut.length() - key_length - 1);

Completed in 1468 milliseconds

1 2 3