Home | History | Annotate | Download | only in keymaster

Lines Matching refs:blob

99            std::string(reinterpret_cast<const char*>(set[pos].blob.data),
100 set[pos].blob.data_length) == val;
107 std::string(reinterpret_cast<const char*>(set[pos].blob.data),
108 set[pos].blob.data_length) == val;
349 static void munge_blob(uint8_t* blob, size_t blob_length) {
350 if (blob && blob_length > 0 && *blob == 'P')
351 *blob = 'Q'; // Mind your Ps and Qs!
354 // Copy and un-modfy the blob. The caller must clean up the return value.
355 static uint8_t* unmunge_blob(const uint8_t* blob, size_t blob_length) {
356 uint8_t* dup_blob = dup_buffer(blob, blob_length);