📄 logger.h
字号:
/* * This file is part of John the Ripper password cracker, * Copyright (c) 1996-98 by Solar Designer *//* * Guess logging routines. */#ifndef _JOHN_LOGGER_H#define _JOHN_LOGGER_H/* * Initializes the logger for a file. */extern void log_init(char *name);/* * Prints a guessed password to stdout and logs it to the file (unless * ciphertext is NULL). */extern void log_guess(char *login, char *ciphertext, char *plaintext);/* * Writes the log file buffer to disk. */extern void log_flush();/* * Closes the log file. */extern void log_done();#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -