1//========================================================================
2//
3// HashAlgorithm.h
4//
5// This file is licensed under the GPLv2 or later
6//
7// Copyright 2023 g10 Code GmbH, Author: Sune Stolborg Vuorela <sune@vuorela.dk>
8//========================================================================
9
10#ifndef HASH_ALGORITHM_H
11#define HASH_ALGORITHM_H
12
13enum class HashAlgorithm
14{
15 Unknown,
16 Md2,
17 Md5,
18 Sha1,
19 Sha256,
20 Sha384,
21 Sha512,
22 Sha224,
23};
24
25#endif // HASH_ALGORITHM_H
26

source code of poppler/poppler/HashAlgorithm.h