Lines Matching full:record
36 * 1. cipher suite record format mentioned in the IPMI specification. The
38 * converted into the cipher record format and pushed into the vector.
66 for (const auto& record : data) in getCipherRecords() local
68 if (record.find(oem) != record.end()) in getCipherRecords()
73 cipherRecords.push_back(record.value(cipher, 0)); in getCipherRecords()
75 cipherRecords.push_back(record.value(oem, 0)); in getCipherRecords()
76 cipherRecords.push_back(record.value(oem, 0) >> 8); in getCipherRecords()
77 cipherRecords.push_back(record.value(oem, 0) >> 16); in getCipherRecords()
84 cipherRecords.push_back(record.value(cipher, 0)); in getCipherRecords()
88 cipherRecords.push_back(record.value(auth, 0)); in getCipherRecords()
89 supportedAlgorithmSet.insert(record.value(auth, 0)); in getCipherRecords()
92 cipherRecords.push_back(record.value(integrity, 0) | integrityTag); in getCipherRecords()
93 supportedAlgorithmSet.insert(record.value(integrity, 0) | integrityTag); in getCipherRecords()
96 cipherRecords.push_back(record.value(conf, 0) | confTag); in getCipherRecords()
97 supportedAlgorithmSet.insert(record.value(conf, 0) | confTag); in getCipherRecords()
177 // Calculate the number of record data bytes to be returned. in getChannelCipherSuites()