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

📄 recovery.h

📁 unix密码破解软件John the Ripper
💻 H
字号:
/* * This file is part of John the Ripper password cracker, * Copyright (c) 1996-98 by Solar Designer *//* * Crash recovery routines. */#ifndef _JOHN_RECOVERY_H#define _JOHN_RECOVERY_H#include <stdio.h>#include "loader.h"/* * Crash recovery file name. */extern char *rec_name;/* * Original command line arguments. */extern int rec_argc;extern char **rec_argv;/* * Opens the crash recovery file for writing, and sets a function that will * be called to save cracking mode specific information. */extern void rec_init(struct db_main *db, void (*save_mode)(FILE *file));/* * Saves the command line arguments and cracking mode specific information. */extern void rec_save();/* * Closes the crash recovery file. * If the session is complete the file is unlinked. */extern void rec_done(int aborted);/* * Opens the file and restores command line arguments. Leaves the file open. */extern void rec_restore_args(int lock);/* * Restores cracking mode specific information and closes the file. */extern void rec_restore_mode(int (*restore_mode)(FILE *file));#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -