| 134 | } |
| 135 | |
| 136 | EmeCryptContext::~EmeCryptContext() |
| 137 | { |
| 138 | if (m_LTable) |
| 139 | delete[] m_LTable; |
| 140 | |
| 141 | if (m_pLTableBuf) |
| 142 | delete m_pLTableBuf; |
| 143 | |
| 144 | if (m_pKeyBuf) |
| 145 | delete m_pKeyBuf; |
| 146 | } |
| 147 | |
| 148 | // tabulateL - calculate L_i for messages up to a length of m cipher blocks |
| 149 | void EmeCryptContext::tabulateL(int m, CryptConfig *pConfig){ |
nothing calls this directly
no outgoing calls
no test coverage detected