Lines Matching full:cipher
92 static constexpr const char* cipher = "cipher"; variable
102 /** @brief Get the supported Cipher records
104 * The cipher records are read from the JSON file and converted into
105 * 1. cipher suite record format mentioned in the IPMI specification. The
106 * records can be either OEM or standard cipher. Each json entry is parsed and
107 * converted into the cipher record format and pushed into the vector.
110 * @return pair of vector containing 1. all the cipher suite records. 2.
124 lg2::error("Channel Cipher suites file not found: {ERROR}", "ERROR", in getCipherRecords()
132 lg2::error("Parsing channel cipher suites JSON failed: {ERROR}", in getCipherRecords()
141 // OEM cipher suite - 0xC1 in getCipherRecords()
143 // Cipher Suite ID in getCipherRecords()
144 cipherRecords.push_back(record.value(cipher, 0)); in getCipherRecords()
152 // Standard cipher suite - 0xC0 in getCipherRecords()
154 // Cipher Suite ID in getCipherRecords()
155 cipherRecords.push_back(record.value(cipher, 0)); in getCipherRecords()
237 lg2::debug("Get channel cipher suites - Invalid payload type: {ERROR}", in getChannelCipherSuites()
265 lg2::debug("Get channel cipher suites - Device does not exist:{ERROR}", in getChannelCipherSuites()