Like RedisModule_GetRandomBytes() but instead of setting the string to * random bytes the string is set to random characters in the in the * hex charset [0-9a-f]. */
| 7222 | * random bytes the string is set to random characters in the in the |
| 7223 | * hex charset [0-9a-f]. */ |
| 7224 | void RM_GetRandomHexChars(char *dst, size_t len) { |
| 7225 | getRandomHexChars(dst,len); |
| 7226 | } |
| 7227 | |
| 7228 | /* -------------------------------------------------------------------------- |
| 7229 | * ## Modules API exporting / importing |
nothing calls this directly
no test coverage detected