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

  /system/keymaster/
key_blob.cpp 200 SHA256_CTX sha256_ctx; local
211 Eraser sha256_ctx_eraser(sha256_ctx);
214 SHA256_Init(&sha256_ctx);
215 SHA256_Update(&sha256_ctx, derivation_data.get(), derivation_data_length);
216 SHA256_Final(hash_buf.get(), &sha256_ctx);
  /bootable/recovery/
verifier.cpp 203 SHA256_CTX sha256_ctx; local
205 SHA256_init(&sha256_ctx);
214 if (need_sha256) SHA256_update(&sha256_ctx, addr + so_far, size);
225 const uint8_t* sha256 = SHA256_final(&sha256_ctx);
  /external/fio/
verify.c 481 struct fio_sha256_ctx sha256_ctx = { local
487 fio_sha256_init(&sha256_ctx);
488 fio_sha256_update(&sha256_ctx, p, hdr->len - hdr_size(hdr));
490 if (!memcmp(vh->sha256, sha256_ctx.buf, sizeof(sha256)))
495 vc->bad_crc = sha256_ctx.buf;
908 struct fio_sha256_ctx sha256_ctx = { local
912 fio_sha256_init(&sha256_ctx);
913 fio_sha256_update(&sha256_ctx, p, len);

Completed in 53 milliseconds