File: otpmd5.c

package info (click to toggle)
tcltrf 2.1.4-dfsg3-8
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 9,656 kB
  • sloc: ansic: 73,139; sh: 3,155; tcl: 1,343; makefile: 182; exp: 22
file content (11 lines) | stat: -rw-r--r-- 340 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
/* otpmd5.c - the OTP variant of MD5 */

/* ideally we would like to define a new argument in dig_opt.c that allows
   us to turn the OTP variant on and off. unfortunately, the variant dictates
   the size of the resulting digest and that's one thing that's compile time.

   hence, the hack du'jour...
 */

#define OTP
#include "md5dig.c"