blob: 09a6dd3965bdc6e3a2c7acdd1d17b8a583953a8b (
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
31
32
33
|
/*************************************************
* User Interface Header File *
* (C) 1999-2007 Jack Lloyd *
*************************************************/
#ifndef BOTAN_UI_H__
#define BOTAN_UI_H__
#include <string>
namespace Botan {
/*************************************************
* User Interface *
*************************************************/
class User_Interface
{
public:
enum UI_Result { OK, CANCEL_ACTION };
virtual std::string get_passphrase(const std::string&,
const std::string&,
UI_Result&) const;
User_Interface(const std::string& = "");
virtual ~User_Interface() {}
protected:
const std::string preset_passphrase;
mutable bool first_try;
};
}
#endif
|