Pool Video Switch v2
Software video switch for distributed remote display in a lecture environment
certmanager.h
Go to the documentation of this file.
1 /*
2 # Copyright (c) 2009 - OpenSLX Project, Computer Center University of Freiburg
3 #
4 # This program is free software distributed under the GPL version 2.
5 # See http://openslx.org/COPYING
6 #
7 # If you have any feedback please consult http://openslx.org/feedback and
8 # send your suggestions, praise, or complaints to feedback@openslx.org
9 #
10 # General information about OpenSLX can be found at http://openslx.org/
11 # -----------------------------------------------------------------------------
12 # src/util/CertManager.cpp
13 # - Manage SSL certificates
14 # - provide access by name
15 # -----------------------------------------------------------------------------
16 */
17 
18 #ifndef CERTMANAGER_H_
19 #define CERTMANAGER_H_
20 
21 #include <QtNetwork/QSslCertificate>
22 #include <QtNetwork/QSslKey>
23 
24 namespace CertManager
25 {
26 bool getPrivateKeyAndCert(const QString &name, QSslKey &key, QSslCertificate &cert);
27 void fatal();
28 }
29 
30 #endif /* CERTMANAGER_H_ */
void fatal()
Definition: certmanager.cpp:70
bool getPrivateKeyAndCert(const QString &name, QSslKey &key, QSslCertificate &cert)
Definition: certmanager.cpp:41