HomeSort by relevance Sort by last modified time
    Searched defs:KeyBlob (Results 1 - 4 of 4) sorted by null

  /system/keymaster/include/keymaster/
key_blob.h 38 class KeyBlob : public Serializable {
44 * Create a KeyBlob containing the specified authorization data and key material. The copy of
51 * to contain a full Keymaster blob, i.e. what KeyBlob is designed to create and manage. In
55 * IMPORTANT: After constructing a KeyBlob, call error() to verify that the blob is usable.
57 KeyBlob(const AuthorizationSet& enforced, const AuthorizationSet& unenforced,
62 * Create a KeyBlob, reconstituting it from the encrypted material in \p encrypted_key,
63 * decrypted with key derived from \p master_key. The KeyBlob takes ownership of the \p
69 * IMPORTANT: After constructing a KeyBlob, call error() to verify that the blob is usable.
71 KeyBlob(const keymaster_key_blob_t& keymaster_blob, const AuthorizationSet& hidden,
75 * Create a KeyBlob, extracting the enforced and unenforced sets, but not decrypting the key, o
    [all...]
  /external/chromium_org/crypto/
hmac_win.cc 137 struct KeyBlob {
142 size_t key_blob_size = std::max(offsetof(KeyBlob, key_data) + key_length,
143 sizeof(KeyBlob));
145 KeyBlob* key_blob = reinterpret_cast<KeyBlob*>(&key_blob_storage[0]);
  /external/chromium_org/net/http/
des.cc 181 struct KeyBlob {
186 KeyBlob key_blob;
  /system/keymaster/
key_blob.cpp 29 class KeyBlob::AeCtx {
43 const size_t KeyBlob::NONCE_LENGTH;
44 const size_t KeyBlob::TAG_LENGTH;
46 KeyBlob::KeyBlob(const AuthorizationSet& enforced, const AuthorizationSet& unenforced,
88 KeyBlob::KeyBlob(const keymaster_key_blob_t& key, const AuthorizationSet& hidden,
103 KeyBlob::KeyBlob(const uint8_t* key_blob, size_t blob_size)
115 size_t KeyBlob::SerializedSize() const
    [all...]

Completed in 100 milliseconds