Index: net/http/des.cc |
diff --git a/net/http/des.cc b/net/http/des.cc |
index 0ca12b94a7471398633b116b0288e76f8619866c..a3b0ee72a2273a3ec234717da292d911f0fa665e 100644 |
--- a/net/http/des.cc |
+++ b/net/http/des.cc |
@@ -85,7 +85,14 @@ void DESMakeKey(const uint8* raw, uint8* key) { |
key[7] = DESSetKeyParity((raw[6] << 1)); |
} |
-#if defined(USE_NSS) |
+#if defined(USE_OPENSSL) |
+ |
+void DESEncrypt(const uint8* key, const uint8* src, uint8* hash) { |
+ // TODO(joth): When implementing consider splitting up this file by platform. |
+ NOTIMPLEMENTED(); |
+} |
+ |
+#elif defined(USE_NSS) |
void DESEncrypt(const uint8* key, const uint8* src, uint8* hash) { |
CK_MECHANISM_TYPE cipher_mech = CKM_DES_ECB; |