@@ -716,20 +716,23 @@ * Initialize CACKey with the correct handle to talk to the Google Smartcard Manager App */ cackeyHandle.postMessage( { "target": "cackey", - "command": "init", - "smartcardManagerAppId": "khpfeaanjngmcnplbdlpegiifgpfgdco" + "command": "init" } ); /* * Initialize the PCSC NaCl interface */ - new GoogleSmartCard.NaclModule(cackeyHandle); - cackeyPCSCHandle = new GoogleSmartCard.PcscLiteClient.NaclClientBackend(cackeyHandle.messageChannel, "CACKey", "khpfeaanjngmcnplbdlpegiifgpfgdco"); + cackeyPCSCHandle = new GoogleSmartCard.PcscLiteClient.NaclClientBackend( + null, + "CACKey", + "khpfeaanjngmcnplbdlpegiifgpfgdco", + cackeyHandle + ); console.log("[cackey] cackeyInitPCSC() complete"); return; }