2016-06-03 11:56:23 +02:00
|
|
|
#ifndef SECURITY_TOKEN_HH
|
|
|
|
#define SECURITY_TOKEN_HH
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2016-08-02 18:49:21 +02:00
|
|
|
// creates a file with restrictive access rights that contains a security token and returns that token, too
|
|
|
|
std::string create_security_token(const std::string& server_address, unsigned port_nr, const std::string& path);
|
2016-06-03 11:56:23 +02:00
|
|
|
|
|
|
|
#endif
|