external.h

来自「UNIX、linux密码的破密程序源代码实现」· C头文件 代码 · 共 43 行

H
43
字号
/* * This file is part of John the Ripper password cracker, * Copyright (c) 1996-2001 by Solar Designer *//* * External mode support. */#ifndef _JOHN_EXTERNAL_H#define _JOHN_EXTERNAL_H#include "loader.h"/* * Defined for use in the ext_filter() macro, below. */extern char *ext_mode;extern struct c_ident *f_filter;/* * Initializes an external mode. */extern void ext_init(char *mode);/* * Calls an external word filter. Returns 0 if the word is rejected. */#define ext_filter(word) \	(!ext_mode || !f_filter || ext_filter_body(word, word))/* * The actual implementation of ext_filter(); use the macro instead. */extern int ext_filter_body(char *in, char *out);/* * Runs the external mode cracker. */extern void do_external_crack(struct db_main *db);#endif

⌨️ 快捷键说明

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