Lines Matching full:cipher
21 namespace cipher namespace
24 /** @brief Get the supported Cipher records
26 * The cipher records are read from the JSON file and converted into
27 * 1. cipher suite record format mentioned in the IPMI specification. The
28 * records can be either OEM or standard cipher. Each json entry is parsed and
29 * converted into the cipher record format and pushed into the vector.
32 * @return pair of vector containing 1. all the cipher suite records. 2.
46 lg2::error("Channel Cipher suites file not found"); in getCipherRecords()
53 lg2::error("Parsing channel cipher suites JSON failed"); in getCipherRecords()
61 // OEM cipher suite - 0xC1 in getCipherRecords()
63 // Cipher Suite ID in getCipherRecords()
64 cipherRecords.push_back(record.value(cipher, 0)); in getCipherRecords()
72 // Standard cipher suite - 0xC0 in getCipherRecords()
74 // Cipher Suite ID in getCipherRecords()
75 cipherRecords.push_back(record.value(cipher, 0)); in getCipherRecords()
98 } // namespace cipher
111 * - rspRecords - cipher suite records.
114 std::vector<uint8_t> // Cipher Records
134 lg2::debug("Get channel cipher suites - Invalid payload type"); in getChannelCipherSuites()
144 cipher::getCipherRecords(); in getChannelCipherSuites()
162 lg2::debug("Get channel cipher suites - Device does not exist"); in getChannelCipherSuites()