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]. */
| 7414 | * random bytes the string is set to random characters in the in the |
| 7415 | * hex charset [0-9a-f]. */ |
| 7416 | void RM_GetRandomHexChars(char *dst, size_t len) { |
| 7417 | getRandomHexChars(dst,len); |
| 7418 | } |
| 7419 | |
| 7420 | /* -------------------------------------------------------------------------- |
| 7421 | * ## Modules API exporting / importing |
nothing calls this directly
no test coverage detected