Add a new element to the digest. This function can be called multiple times * one element after the other, for all the elements that constitute a given * data structure. The function call must be followed by the call to * `RedisModule_DigestEndSequence` eventually, when all the elements that are * always in a given order are added. See the Redis Modules data types * documentation for more inf
| 5057 | * |
| 5058 | */ |
| 5059 | void RM_DigestAddStringBuffer(RedisModuleDigest *md, unsigned char *ele, size_t len) { |
| 5060 | mixDigest(md->o,ele,len); |
| 5061 | } |
| 5062 | |
| 5063 | /* Like `RedisModule_DigestAddStringBuffer()` but takes a long long as input |
| 5064 | * that gets converted into a string before adding it to the digest. */ |
nothing calls this directly
no test coverage detected