714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
|
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
|
-
+
-
-
-
+
+
+
+
+
+
|
/*
* Initialize CACKey with the correct handle to talk to the Google Smartcard Manager App
*/
cackeyHandle.postMessage(
{
"target": "cackey",
"command": "init",
"command": "init"
"smartcardManagerAppId": "khpfeaanjngmcnplbdlpegiifgpfgdco"
}
);
/*
* 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;
}
/*
|