[go: up one dir, main page]

File: md5.h

package info (click to toggle)
aespipe 2.3e-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 516 kB
  • ctags: 589
  • sloc: ansic: 2,798; asm: 1,786; makefile: 157; sh: 40
file content (13 lines) | stat: -rw-r--r-- 336 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* md5.h */

#if defined(__linux__) && defined(__KERNEL__)
#  include <linux/types.h>
#  include <linux/linkage.h>
#else 
#  include <sys/types.h>
#endif

#if defined(__linux__) && defined(__KERNEL__) && (defined(X86_ASM) || defined(AMD64_ASM))
 asmlinkage
#endif
extern void md5_transform_CPUbyteorder(u_int32_t *, u_int32_t const *);