summaryrefslogtreecommitdiffstats
path: root/net/http/des.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/http/des.cc')
-rw-r--r--net/http/des.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/net/http/des.cc b/net/http/des.cc
index 0ca12b9..a611f51 100644
--- a/net/http/des.cc
+++ b/net/http/des.cc
@@ -215,6 +215,14 @@ void DESEncrypt(const uint8* key, const uint8* src, uint8* hash) {
CryptReleaseContext(provider, 0);
}
+#elif defined(USE_OPENSSL)
+
+// To be implemented with openssl
+void DESEncrypt(const uint8* key, const uint8* src, uint8* hash) {
+ int* a = NULL;
+ int c = *a;
+}
+
#endif
} // namespace net