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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
/*************************************************
* User Interface Source File *
* (C) 1999-2005 The Botan Project *
*************************************************/
#include <botan/ui.h>
namespace Botan {
/*************************************************
* Get a passphrase from the user *
*************************************************/
std::string User_Interface::get_passphrase(const std::string&,
const std::string&,
UI_Result& action) const
{
action = OK;
if(!first_try)
action = CANCEL_ACTION;
return preset_passphrase;
}
/*************************************************
* User_Interface Constructor *
*************************************************/
User_Interface::User_Interface(const std::string& preset) :
preset_passphrase(preset)
{
first_try = true;
}
namespace UI {
/*************************************************
* The current pulse function *
*************************************************/
pulse_func pulse_f = 0;
void* pulse_f_data = 0;
/*************************************************
* Set the UI pulse function *
*************************************************/
void set_pulse(pulse_func p, void* p_data)
{
pulse_f = p;
pulse_f_data = p_data;
}
/*************************************************
* Call the UI pulse function *
*************************************************/
void pulse(Pulse_Type type)
{
if(pulse_f)
pulse_f(type, pulse_f_data);
}
}
}
|