自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(0)
  • 资源 (35)
  • 收藏
  • 关注

空空如也

C++ Footprint and Performance Optimization

很难找的一本书,还不错。 The market for miniature computer programming is exploding. C++ Footprint and Performance Optimization supplies programmers the knowledge they need to write code for the increasing number of hand-held devices, wearable computers, and intelligent appliances. This book gives readers valuable knowledge and programming techniques that are not currently part of traditional programming training. In the world of C++ programming, all other things being equal, programs that are smaller and faster are better. C++ Footprint and Performance Optimization contains case studies and sample code to give readers concrete examples and proven solutions to problems that don't have cut and paste solutions.

2012-03-19

TCP-IP协议栈源码分析2.6.18

TCP-IP协议栈源码分析2.6.18,还没怎么仔细看,建议对比阅读。

2012-03-19

stevens 的 sock

stevens的unix网络编程里面的sock程序源码,下载。 仅支持IPv4,TCP和UDP。

2012-03-19

TCP-IP详解卷三:TCP事务协议,HTTP,NNTP和UNIX域协议

本章首先介绍客户-服务器事务概念。我们从使用U D P的客户-服务器应用开始,这是最 简单的情形。接着我们编写使用T C P的客户和服务器程序,并由此考察两台主机间交互的 T C P / I P分组。然后我们使用T / T C P,证明利用T / T C P可以减少分组数,并给出为利用T / T C P需 要对两端的源代码所做的最少改动。

2012-03-14

C语言标准 C99

©ISO/IEC ISO/IEC 9899:1999 (E) 标准规范。

2012-03-07

openssl 手册中文版

1.1 对称算法 对称算法使用一个密钥。给定一个明文和一个密钥,加密产生密文,其长度和明文大致相同。解密时,使用读密钥与加密密钥相同。 对称算法主要有四种加密模式: (1) 电子密码本模式 Electronic Code Book(ECB) 这种模式是最早采用和最简单的模式,它将加密的数据分成若干组,每组的大小跟加密密钥长度相同,然后每组都用相同的密钥进行加密。 其缺点是:电子编码薄模式用一个密钥加密消息的所有块,如果原消息中重复明文块,则加密消息中的相应密文块也会重复,因此,电子编码薄模式适于加密小消息。 (2)加密块链模式 Cipher Block Chaining(CBC) CBC模式的加密首先也是将明文分成固定长度的块,然后将前面一个加密块输出的密文与下一个要加密的明文块进行异或操作,将计算结果再用密钥进行加密得到密文。第一明文块加密的时候,因为前面没有加密的密文,所以需要一个初始化向量。跟ECB方式不一样,通过连接关系,使得密文跟明文不再是一一对应的关系,破解起来更困难,而且克服了只要简单调换密文块可能达到目的的攻击。 (3)加密反馈模式 Cipher Feedback Mode(CFB) 面向字符的应用程序的加密要使用流加密法,可以使用加密反馈模式。在此模式下,数据用更小的单元加密,如可以是8位,这个长度小于定义的块长(通常是64位)。其加密步骤是: a) 使用64位的初始化向量。初始化向量放在移位寄存器中,在第一步加密,产生相应的64位初始化密文; b) 始化向量最左边的8位与明文前8位进行异或运算,产生密文第一部分(假设为c),然后将c传输到接收方; c) 向量的位(即初始化向量所在的移位寄存器内容)左移8位,使移位寄存器最右边的8位为不可预测的数据,在其中填入c的内容; d) 第1-3步,直到加密所有的明文单元。

2012-03-07

Inside the C++ Object Model

Lippman菜鸟写的 Inside the C++ Object Model focuses on the underlying mechanisms that support object-oriented programming within C++: constructor semantics, temporary generation, support for encapsulation, inheritance, and "the virtuals"-virtual functions and virtual inheritance. This book shows how your understanding the underlying implementation models can help you code more efficiently and with greater confidence. Lippman dispells the misinformation and myths about the overhead and complexity associated with C++, while pointing out areas in which costs and trade offs, sometimes hidden, do exist. He then explains how the various implementation models arose, points out areas in which they are likely to evolve, and why they are what they are. He covers the semantic implications of the C++ object model and how that model affects your programs.

2012-03-07

A Guide to Kernel Exploitation

自己看着办吧。其实还是教你怎么读代码。 CHAPTER 1 From User-Land to Kernel-Land Attacks. . . . . . . . . . . . . . . . 3 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 Introducing the Kernel and the World of Kernel Exploitation . . . 3 The Art of Exploitation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Why Doesn’t My User-Land Exploit Work Anymore?. . . . . . . . . . 9 Kernel-Land Exploits versus User-Land Exploits. . . . . . . . . 11 An Exploit Writer’s View of the Kernel. . . . . . . . . . . . . . . . . . . . . . 13 User-Land Processes and the Scheduler . . . . . . . . . . . . . . . . . . 13 Virtual Memory. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 Open Source versus Closed Source Operating Systems . . . . . . . . 18 Summary. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 Related Reading. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 Endnote. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 CHAPTER 2 A Taxonomy of Kernel Vulnerabilities. . . . . . . . . . . . . . . . 21

2012-03-07

Exceptional C++ (简体中文版).

Exceptional C++ (简体中文版),,,,,,,

2010-09-01

Algorithms For Programmers

Algorithms For Programmers

2010-09-01

acm国际大学生程序设计竞赛试题与解析

acm国际大学生程序设计竞赛试题与解析,,,,,

2010-09-01

Professional Linux Kernel Architecture

Professional Linux Kernel Architecture.

2010-09-01

LINUX-1.2.13内核网络栈实现源代码分析

曹桂平老师写的,好像出书了?4系快电子真是厉害。

2010-09-01

ELF32 Format

ELF32 Format, e verion, good to refer to.

2010-09-01

x86编译器的汇编优化指南

Optimizing subroutines in assembly language, An optimization guide for x86 platforms.

2010-09-01

编译器调用约定 手册

calling conventions, stdcall, cdecl, fastcall...

2010-09-01

Optimizing software in C++

C++ 的编译器级别优化指南。非常不错,介绍的比较详细。

2010-09-01

GCC 使用手册 完整版

GCC 使用手册 完整版,比较详细,适合中等人员使用。

2010-09-01

The GNU C Library Reference Manual

The GNU C Library Reference Manual

2010-09-01

GNU make 使用手册

GNU make 完全使用手册,非常好的书

2010-09-01

The Art of Computer Programing 3

The Art of Computer Programing

2010-09-01

The Art of Computer Programing 2

The Art of Computer Programing

2010-09-01

The Art of Computer Programing 1

The Art of Computer Programing

2010-09-01

ELF-64 Object File Format

ELF-64 Object File Format

2010-09-01

INTEL 80386 PROGRAMMER'S REFERENCE MANUAL

INTEL 80386 PROGRAMMER'S REFERENCE MANUAL

2010-09-01

Intel IA32 optimization guide

Intel IA32 optimization guide

2010-09-01

Intel i386 System V Application Binary Interface

Intel i386 System V Application Binary Interface

2010-09-01

PowerPC ABI Compliant Programs

PowerPC ABI Compliant Programs

2010-09-01

PowerPC ABI

PowerPC Application Binary Interface

2010-09-01

Vim handbook

VIM的说明书。。。。。。。。。。。。。。。。。。。。。。。。。。。

2010-09-01

26个例子讲设计模式

C++ 的模式设计,可以借鉴作为补充。不错的一本书

2010-09-01

Object-oriented programming with ANSI-C

这个我还没开始看,先放上去以便下载,用c实现oop。

2009-11-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除