Files
integration/luprex/core/cpp/dummycert.hpp

17 lines
353 B
C++
Raw Normal View History

2022-01-10 14:39:19 -05:00
// 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