For now, when creating the NDN object, set verify false.
diff --git a/js/ndnProtocol/components/ndnProtocolService.js b/js/ndnProtocol/components/ndnProtocolService.js
index fa25c0e..3276db9 100644
--- a/js/ndnProtocol/components/ndnProtocolService.js
+++ b/js/ndnProtocol/components/ndnProtocolService.js
@@ -18,7 +18,8 @@
 

 function NdnProtocol() {

     // TODO: Remove host: null when null is the default.

-    this.ndn = new NDN({ getTransport: function() { return new XpcomTransport(); }, host: null });

+    this.ndn = new NDN({ getTransport: function() { return new XpcomTransport(); }, 

+        host: null, verify: false });

 }

 

 NdnProtocol.prototype = {