| /src/external/bsd/elftosb/dist/common/ |
| RijndaelCBCMAC.h | 45 const block_t & getMAC() const { return m_mac; } 51 memcpy(m_mac, other.m_mac, sizeof(m_mac)); 57 block_t m_mac; //!< Current message authentication code value. member in class:RijndaelCBCMAC
|
| RijndaelCBCMAC.cpp | 22 memcpy(m_mac, iv, sizeof(m_mac)); 26 memset(m_mac, 0, sizeof(m_mac)); 50 //! On entry the current value of m_mac becomes the initialization vector 52 //! becomes the new MAC, which is stored in m_mac. 56 cipher.init(Rijndael::CBC, Rijndael::Encrypt, m_key, Rijndael::Key16Bytes, m_mac); 57 cipher.blockEncrypt(data, BLOCK_SIZE * 8, m_mac); // size is in bits 60 // logHexArray(Logger::DEBUG2, (const uint8_t *)&m_mac, sizeof(m_mac)); [all...] |
| EncoreBootImage.h | 171 cipher_block_t m_mac; //!< CBC-MAC of the header. member in struct:elftosb::EncoreBootImage::dek_dictionary_entry_t
|
| /src/external/bsd/elftosb/dist/sbtool/ |
| EncoreBootImageReader.cpp | 204 if (memcmp(macResult, entry.m_mac, sizeof(cipher_block_t)) == 0)
|