⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 logger.h

📁 unix密码破解软件John the Ripper
💻 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 + -