See the documentation for `RedisModule_DigestAddElement()`. */
| 4961 | |
| 4962 | /* See the documentation for `RedisModule_DigestAddElement()`. */ |
| 4963 | void RM_DigestEndSequence(RedisModuleDigest *md) { |
| 4964 | xorDigest(md->x,md->o,sizeof(md->o)); |
| 4965 | memset(md->o,0,sizeof(md->o)); |
| 4966 | } |
| 4967 | |
| 4968 | /* Decode a serialized representation of a module data type 'mt' from string |
| 4969 | * 'str' and return a newly allocated value, or NULL if decoding failed. |