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

📄 common.h

📁 unix密码破解软件John the Ripper
💻 H
字号:
/* * This file is part of John the Ripper password cracker, * Copyright (c) 1996-98 by Solar Designer *//* * Things common to many ciphertext formats. */#ifndef _JOHN_COMMON_H#define _JOHN_COMMON_H#include "arch.h"#if ARCH_INT_GT_32typedef unsigned short ARCH_WORD_32;#elsetypedef unsigned int ARCH_WORD_32;#endif/* * ASCII <-> binary conversion tables. */extern char itoa64[64], atoi64[0x100];extern char itoa16[16], atoi16[0x100];/* * Initializes the tables. */extern void common_init();#endif

⌨️ 快捷键说明

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