Searched refs:signed_data (Results 1 – 3 of 3) sorted by relevance
137 auto signed_data = signFunction(std::string(to_be_signed_buf, to_be_signed_length)); in createSelfSignedCertificate() local138 if (!signed_data.ok()) { in createSelfSignedCertificate()139 return signed_data.error(); in createSelfSignedCertificate()144 x509->signature->data = (unsigned char*)OPENSSL_malloc(signed_data->size()); in createSelfSignedCertificate()145 memcpy(x509->signature->data, signed_data->c_str(), signed_data->size()); in createSelfSignedCertificate()146 x509->signature->length = signed_data->size(); in createSelfSignedCertificate()
523 signed_data, _ = PayloadChecker._Run(527 if len(signed_data) != len(common.SIG_ASN1_HEADER) + 32:529 (sig_name, len(signed_data)))531 if not signed_data.startswith(common.SIG_ASN1_HEADER):535 signed_hash = signed_data[len(common.SIG_ASN1_HEADER):]
101 int32_t signed_data = static_cast<int32_t>(data << 1) >> 1; in ExtractEntryData() local102 uint32_t addr = (entry_offset + 4) + signed_data; in ExtractEntryData()