Update firefox addon to be compliant with new jpm building tool

This commit is contained in:
2015-11-05 18:42:15 +01:00
parent 075dd914f1
commit 81b6116a9f
4 changed files with 8 additions and 7 deletions

View File

@@ -22,9 +22,9 @@ var notifications = require("sdk/notifications");
var self = require("sdk/self");
var prefSet = require("sdk/simple-prefs");
var pkdbf2 = require("pkdbf2").pkdbf2;
var aes = require("jsaes").aes;
var parseURI = require("parseuri").parseURI;
var pkdbf2 = require("lib/pkdbf2").pkdbf2;
var aes = require("lib/jsaes").aes;
var parseURI = require("lib/parseuri").parseURI;
var DEBUG = false;
var pkdbf2_level = getPref("pkdbf2_level");
var protocol_version = 3;

View File

@@ -17,7 +17,7 @@
along with gPass. If not, see <http://www.gnu.org/licenses/>.
*/
var hmac = require("hmac").hmac;
var hmac = require("lib/hmac").hmac;
exports.pkdbf2 = {