blob: 86a8bf1bb5cf432f066e533204fc453a4f0a6dd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*************************************************
* OpenPGP S2K Header File *
* (C) 1999-2007 The Botan Project *
*************************************************/
#ifndef BOTAN_OPENPGP_S2K_H__
#define BOTAN_OPENPGP_S2K_H__
#include <botan/s2k.h>
namespace Botan {
/*************************************************
* OpenPGP S2K *
*************************************************/
class OpenPGP_S2K : public S2K
{
public:
std::string name() const;
S2K* clone() const;
OpenPGP_S2K(const std::string&);
private:
OctetString derive(u32bit, const std::string&,
const byte[], u32bit, u32bit) const;
const std::string hash_name;
};
}
#endif
|