summaryrefslogtreecommitdiff
path: root/distfoldd/localkey.h
blob: ad2309184e8c0dabeac7aca46866a42af61e8e01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef LOCALKEY_H
#define LOCALKEY_H

#include <QtCore/QString>

class LocalKey
{
private:
	LocalKey();

public:
	static QString localKeyDir();
	static QString localCertPath();
	static QString localPrivateKeyPath();

	static bool setupLocalKey();
};

#endif // LOCALKEY_H