探索White-box技术的无限可能,掌握从源代码到执行流程的全面洞察。作为软件测试与安全分析的重要工具,White-box方法通过深入程序内部结构,帮助工程师发现潜在漏洞、优化性能及提升质量。适用于嵌入式系统开发、移动应用测试等多个领域。虫虫下载站为您提供206个精选资源,涵盖教程、案例研究及实用工具,全部免费下载。立即加入,开启您的专业成长之旅!
[Orig. PDF] Applications of Digital Arithmetic to Digital Signal Processing : A Tutorial Review (By Stanly A. White, IEEE ASSP Magazine, July 1989)...
📅
👤 PresidentHuang
form = new_form(fields)
scale_form(form, &rows, &cols)
win = newwin(rows+3, cols+4, 3, 20)
subwin = derwin(win, rows, cols, 1, 2)
se...
📅
👤 wff
//初始化
if(initscr() == NULL) {
perror("initcurs")
exit(EXIT_FAILURE)
}
//设置模式
cbreak()
noecho()
keypad(stdscr, TRUE)
...
📅
👤 FreeSky
//初始化
if(initscr() == NULL) {
perror("initcurs")
exit(EXIT_FAILURE)
}
cbreak()
noecho()
keypad(stdscr, TRUE)
//建立菜单项
...
📅
👤 小眼睛LSL
This code outputs various NMEA strings to a com port. The code was
originally used to test naviation programmes.
First select the required com po...
📅
👤 熊少锋