| 159 | } |
| 160 | |
| 161 | inline void CodedInputDataCrypt::statusBeforeDecrypt(size_t rollbackSize, AESCryptStatus &status) { |
| 162 | rollbackSize += m_decryptBufferDecryptLength - m_decryptBufferPosition; |
| 163 | m_decrypter.statusBeforeDecrypt(m_ptr + m_decryptPosition, m_decryptBuffer + m_decryptBufferDecryptLength, |
| 164 | rollbackSize, status); |
| 165 | } |
| 166 | |
| 167 | int8_t CodedInputDataCrypt::readRawByte() { |
| 168 | assert(m_position <= m_decryptPosition); |
nothing calls this directly
no outgoing calls
no test coverage detected