See the documentation for `RedisModule_DigestAddElement()`. */
| 5070 | |
| 5071 | /* See the documentation for `RedisModule_DigestAddElement()`. */ |
| 5072 | void RM_DigestEndSequence(RedisModuleDigest *md) { |
| 5073 | xorDigest(md->x,md->o,sizeof(md->o)); |
| 5074 | memset(md->o,0,sizeof(md->o)); |
| 5075 | } |
| 5076 | |
| 5077 | /* Decode a serialized representation of a module data type 'mt' from string |
| 5078 | * 'str' and return a newly allocated value, or NULL if decoding failed. |
nothing calls this directly
no test coverage detected