Lines Matching full:body
44 uint16_t size; /* sizeof(body) */ in PACKED_TYPE()
45 uint8_t body[32]; in PACKED_TYPE()
51 uint16_t size; /* sizeof(body) */
52 uint8_t body[20];
58 uint16_t size; /* sizeof(alg) + sizeof(body) */
60 uint8_t body[32];
88 uint16_t size; /* sizeof(body) */
89 uint8_t body[256];
95 uint16_t size; /* sizeof(body) */
96 uint8_t body[32];
154 if ((dgst->size = sizeof(dgst->body)) != SHA_DIGEST_LENGTH ||
160 EVP_DigestFinal_ex(ctx, dgst->body, NULL) != 1) {
176 name->size = sizeof(name->alg) + sizeof(name->body); in get_signed_name()
177 if (sizeof(name->body) != SHA256_DIGEST_LENGTH || in get_signed_name()
178 SHA256(pubarea->ptr, pubarea->len, name->body) != name->body) { in get_signed_name()
245 expected.policy.size = sizeof(expected.policy.body); in check_rs256_pubarea()
250 expected.key.size = sizeof(expected.key.body); in check_rs256_pubarea()
251 memcpy(&expected.key.body, &pk->n, sizeof(expected.key.body)); in check_rs256_pubarea()
280 expected.policy.size = sizeof(expected.policy.body); in check_es256_pubarea()
285 expected.point.x.size = sizeof(expected.point.x.body); in check_es256_pubarea()
286 expected.point.y.size = sizeof(expected.point.y.body); in check_es256_pubarea()
287 memcpy(&expected.point.x.body, &pk->x, sizeof(expected.point.x.body)); in check_es256_pubarea()
288 memcpy(&expected.point.y.body, &pk->y, sizeof(expected.point.y.body)); in check_es256_pubarea()
326 sizeof(expected.signer.body); in check_sha1_certinfo()