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

📄 config.h

📁 twocrypt(2c)是一个 PoC工具
💻 H
字号:
/*   config.h - general configuration   --------------------------------   Copyright (C) 2003 by Michal Zalewski <lcamtuf@coredump.cx> */#ifndef _HAVE_CONFIG_H#define _HAVE_CONFIG_H// Key size - keep a multiple of 8.#define KEYSIZE		(1<<14)// Min/max password length#define MIN_PASS	10#define MAX_PASS	256// Minimum file size (bytes)#define MIN_SIZE	128// Add up to that much random padding.#define RANDOM_PAD	4096// urandom is fine, we don't need highest quality entropy.#define RND_SOURCE	"/dev/urandom"// Keep different from each other.#define CFILE1_ID	0xCAFEFACE#define CFILE2_ID	0xDEADBEEF#define CSTREAM_ID	0xDEFACED#define BLK_COMP	0xF0#define BLK_UNCOMP	0x0F#endif /* ! _HAVE_CONFIG_H */

⌨️ 快捷键说明

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