* Default password validation implementation, just returns true */
| 327 | * Default password validation implementation, just returns true |
| 328 | */ |
| 329 | bool |
| 330 | IsPasswordValid(const char *username, const char *password) |
| 331 | { |
| 332 | if (password_validation_hook != NULL) |
| 333 | { |
| 334 | return password_validation_hook(username, password); |
| 335 | } |
| 336 | return true; |
| 337 | } |
| 338 | |
| 339 | |
| 340 | /* |
no outgoing calls
no test coverage detected