sys: Remove $FreeBSD$: one-line .c patternRemove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
sys: Remove $FreeBSD$: two-line .h patternRemove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
Revert previous commit...Pointyhat to: kevlo (myself)
Prefer NULL over 0 for pointers
Avoid 256 integer divisions per rc4_init() call. Replace it with usingseparate index variable.It gives more then double rc4_init() performance increase on tested i386 P4.It also gives about 15% s
Avoid 256 integer divisions per rc4_init() call. Replace it with usingseparate index variable.It gives more then double rc4_init() performance increase on tested i386 P4.It also gives about 15% speedup to PPTP VPN with stateless MPPE encryption(by ng_mppc) which calls rc4_init() for every packet.
show more ...
Use __FBSDID().
make rc4 crypto support a module so other modules can depend on itSubmitted by: impReviewed by: imp
A simplified RC4 implementation for kernel use.