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

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