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

  /system/keymaster/
key_blob.cpp 44 const size_t KeyBlob::TAG_LENGTH;
49 : error_(KM_ERROR_OK), nonce_(new uint8_t[NONCE_LENGTH]), tag_(new uint8_t[TAG_LENGTH]),
90 : nonce_(new uint8_t[NONCE_LENGTH]), tag_(new uint8_t[TAG_LENGTH]), hidden_(hidden) {
104 : nonce_(new uint8_t[NONCE_LENGTH]), tag_(new uint8_t[TAG_LENGTH]) {
116 return NONCE_LENGTH + sizeof(uint32_t) + key_material_length() + TAG_LENGTH +
124 buf = append_to_buf(buf, end, tag(), TAG_LENGTH);
135 !copy_from_buf(buf_ptr, end, tag_.get(), TAG_LENGTH) ||
229 if (ae_init(ctx->get(), derived_key.get(), AES_BLOCK_SIZE, NONCE_LENGTH, TAG_LENGTH) ==
  /system/keymaster/include/keymaster/
key_blob.h 41 static const size_t TAG_LENGTH = 128 / 8;
87 memset_s(tag_.get(), 0, TAG_LENGTH);

Completed in 449 milliseconds