!7 cmodule AssistantUserPasswords > DynPrintLog { // API void savePassword(S userID, S hash) { saveTextFile(assistants_pwHashFile(userID), assertMD5(hash)); } bool checkPassword(S userID, S hash) { ret eq(trim(loadTextFile(assistants_pwHashFile(userID))), hash); } }