17 lines
353 B
C++
17 lines
353 B
C++
// The Dummy Certificate
|
|
//
|
|
// This contains a fake certificate which can be used for
|
|
// SSL transactions, when security is not important.
|
|
// Generally, that's only the case during debugging.
|
|
//
|
|
|
|
#ifndef DUMMYCERT_HPP
|
|
#define DUMMYCERT_HPP
|
|
|
|
namespace dummycert {
|
|
extern const char *certificate;
|
|
extern const char *privatekey;
|
|
}
|
|
|
|
#endif // DUMMYCERT_HPP
|