openssl now working under linux

This commit is contained in:
2022-01-10 14:39:19 -05:00
parent 7d13a52740
commit c47e13691d
6 changed files with 286 additions and 77 deletions

View File

@@ -0,0 +1,16 @@
// 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