Method for password comparison used for the user->passwords list * Like the above, but uses a time independant compare for security reasons */
| 232 | /* Method for password comparison used for the user->passwords list |
| 233 | * Like the above, but uses a time independant compare for security reasons */ |
| 234 | int ACLListMatchSdsSecure(void *a, void* b) { |
| 235 | return time_independent_strcmp((sds)a,(sds)b) == 0; |
| 236 | } |
| 237 | |
| 238 | /* Method to free list elements from ACL users password/patterns lists. */ |
| 239 | void ACLListFreeSds(const void *item) { |
nothing calls this directly
no test coverage detected