HomeSort by relevance Sort by last modified time
    Searched refs:key_bytes (Results 1 - 12 of 12) sorted by null

  /frameworks/av/drm/mediacas/plugins/clearkey/
KeyFetcher.h 34 sp<ABuffer> key_bytes; member in struct:android::clearkeycas::KeyFetcher::KeyInfo
ClearKeyFetcher.cpp 119 key.key_bytes = container.descriptor(i).ecm().content_key();
ClearKeyCasPlugin.cpp 364 const sp<ABuffer>& keyBytes = keys[keyIndex].key_bytes;
  /external/python/oauth2client/tests/
test__pure_python_crypt.py 137 key_bytes = self._load_pkcs1_key_bytes()
138 signer = crypt.RsaSigner.from_string(key_bytes)
143 key_bytes = _helpers._from_bytes(self._load_pkcs1_key_bytes())
144 signer = crypt.RsaSigner.from_string(key_bytes)
149 key_bytes = self._load_pkcs8_key_bytes()
150 signer = crypt.RsaSigner.from_string(key_bytes)
155 key_bytes = self._load_pkcs8_key_bytes()
157 six.StringIO(_helpers._from_bytes(key_bytes)),
164 crypt.RsaSigner.from_string(key_bytes)
170 key_bytes = _helpers._from_bytes(self._load_pkcs8_key_bytes()
    [all...]
test__pycrypto_crypt.py 71 key_bytes = 'definitely-not-pem-format'
73 crypt.PyCryptoSigner.from_string(key_bytes)
  /external/python/oauth2client/oauth2client/
_pure_python_crypt.py 121 key_bytes = _bit_list_to_bytes(cert_info['subjectPublicKey'])
122 pubkey = rsa.PublicKey.load_pkcs1(key_bytes, 'DER')
167 marker_id, key_bytes = pem.readPemBlocksFromFile(
171 pkey = rsa.key.PrivateKey.load_pkcs1(key_bytes,
175 key_bytes, asn1Spec=_PKCS8_SPEC)
  /frameworks/av/drm/mediacas/plugins/clearkey/tests/
ClearKeyFetcherTest.cpp 98 EXPECT_EQ(content_key_[0]->size(), keys[0].key_bytes->size());
100 keys[0].key_bytes->data(), content_key_[0]->size()));
102 EXPECT_EQ(content_key_[1]->size(), keys[1].key_bytes->size());
104 keys[1].key_bytes->data(), content_key_[1]->size()));
  /external/vboot_reference/firmware/2lib/
2rsa.c 298 uint32_t key_bytes; local
313 key_bytes = key->arrsize * sizeof(uint32_t);
314 if (key_bytes != sig_size) {
319 workbuf32 = vb2_workbuf_alloc(&wblocal, 3 * key_bytes);
325 vb2_workbuf_free(&wblocal, 3 * key_bytes);
342 if (vb2_safe_memcmp(sig + pad_size, digest, key_bytes - pad_size)) {
  /external/tensorflow/tensorflow/contrib/lite/kernels/
lsh_projection.cc 121 const size_t key_bytes = sizeof(float) + input_item_bytes; local
122 std::unique_ptr<char[]> key(new char[key_bytes]);
129 int64_t hash_signature = farmhash::Fingerprint64(key.get(), key_bytes);
  /external/tensorflow/tensorflow/lite/kernels/
lsh_projection.cc 121 const size_t key_bytes = sizeof(float) + input_item_bytes; local
122 std::unique_ptr<char[]> key(new char[key_bytes]);
129 int64_t hash_signature = farmhash::Fingerprint64(key.get(), key_bytes);
  /external/boringssl/src/crypto/fipsmodule/cipher/
internal.h 115 // aes_ctr_set_key initialises |*aes_key| using |key_bytes| bytes from |key|,
116 // where |key_bytes| must either be 16, 24 or 32. If not NULL, |*out_block| is
122 size_t key_bytes);
e_aes.c 233 size_t key_bytes) {
235 aes_hw_set_encrypt_key(key, key_bytes * 8, aes_key);
246 aes_nohw_set_encrypt_key(key, key_bytes * 8, aes_key);
257 vpaes_set_encrypt_key(key, key_bytes * 8, aes_key);
271 aes_nohw_set_encrypt_key(key, key_bytes * 8, aes_key);
    [all...]

Completed in 386 milliseconds