| 238 | |
| 239 | template<size_t WIDTH> |
| 240 | FullStepRow<WIDTH>::FullStepRow(const unsigned char* hashIn, size_t hInLen, |
| 241 | size_t hLen, size_t cBitLen, eh_index i) : |
| 242 | StepRow<WIDTH> {hashIn, hInLen, hLen, cBitLen} |
| 243 | { |
| 244 | EhIndexToArray(i, hash+hLen); |
| 245 | } |
| 246 | |
| 247 | template<size_t WIDTH> template<size_t W> |
| 248 | FullStepRow<WIDTH>::FullStepRow(const FullStepRow<W>& a, const FullStepRow<W>& b, size_t len, size_t lenIndices, size_t trim) : |
nothing calls this directly
no test coverage detected