| 139 | } |
| 140 | |
| 141 | void InvertibleRWFunction::LoadPrecomputation(BufferedTransformation &bt) |
| 142 | { |
| 143 | BERSequenceDecoder seq(bt); |
| 144 | m_pre_2_9p.BERDecode(seq); |
| 145 | m_pre_2_3q.BERDecode(seq); |
| 146 | m_pre_q_p.BERDecode(seq); |
| 147 | seq.MessageEnd(); |
| 148 | |
| 149 | m_precompute = true; |
| 150 | } |
| 151 | |
| 152 | void InvertibleRWFunction::SavePrecomputation(BufferedTransformation &bt) const |
| 153 | { |
no test coverage detected