?? logger.h
字號(hào):
/* * 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
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -