| 179 | |
| 180 | template <unsigned Length> |
| 181 | FORCE_INLINE char *fillSponge(char *sponge, const SmallString &s) |
| 182 | { |
| 183 | memcpy(sponge, s.data, Length == 0 ? s.length : Length); |
| 184 | return sponge + s.length; |
| 185 | } |
| 186 | |
| 187 | template <unsigned Length> |
| 188 | FORCE_INLINE char *fillSponge(char *sponge, const SmallString &functionName, uint64_t nonce, const SmallString &functionParams) |
nothing calls this directly
no test coverage detected