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

#include <sys/types.h>
#include "system.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;