1/* otpsha1.c - the OTP variant of SHA1 */
2
3/* ideally we would like to define a new argument in dig_opt.c that allows
4   us to turn the OTP variant on and off. unfortunately, the variant dictates
5   the size of the resulting digest and that's one thing that's compile time.
6
7   hence, the hack du'jour...
8 */
9
10#define OTP
11#include "sha1.c"
12