summaryrefslogtreecommitdiff
path: root/src/checksum.h
blob: f3978bdfbbc85c066d5287b6794279eb138ed8d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <config.h>

#include <sys/types.h>
#include <stdio.h>

/* For long options that have no equivalent short option, use a
   non-character as a pseudo short option, starting with CHAR_MAX + 1.  */
enum
{
  ALG_UNSPECIFIED = 0,
  ALG_MD5 = CHAR_MAX + 1,
  ALG_SHA1
};

extern int algorithm;