summaryrefslogtreecommitdiff
path: root/src/captcha.hpp
blob: 486522ef449d7e021f5794bb4e9a507ed808f695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef CAPTCHA_HPP
#define CAPTCHA_HPP

#include <string>

struct captcha {
	std::string text;	// the text the user has to guess
	std::string base64;	// the GIF in BASE64 encoding
};

captcha generateCaptcha( );

#endif