File: md5.h

package info (click to toggle)
loop-aes 3.1d-13etch2
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,508 kB
  • ctags: 834
  • sloc: ansic: 4,467; asm: 1,786; sh: 579; makefile: 574; python: 53
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 *);