0

我正在尝试调用下面提到的加密函数:

var encryptor = require("./jsencrypt.js");
this.encrypt = function () {
  var key="LxVtiqZV6g2D493gDBfG0BfV6sAhteG6hOCAu48qO00Z99OpiaIG5vZxVtiqZV8C7bpwIDAQAB";
  encryptor = new JSEncrypt();
  encryptor.setPublicKey(key);
  var newString = encryptor.encrypt('Password');
  console.log("Encrypted password =",newString);
}

最初我收到未定义的 JSEncrypt 的引用错误。所以我下载了jsencrypt.js文件并var encryptor = require("./jsencrypt.js");在开始时添加。

现在我收到以下错误:

Message:
ReferenceError: navigator is not defined
Stacktrace:
ReferenceError: navigator is not defined
at e:\Praveen Data\Projects\ECP\CentralRegistryUI\TestScripts\Utils\jsencrypt.js:73:13
at Object.<anonymous> (e:\Praveen Data\Projects\ECP\CentralRegistryUI\TestScripts\Utils\jsencrypt.js:4342:3)
at require (module.js:385:17)

尝试在 jsencrypt.js 中使用 windows.navigator,但没有奏效。

4

4 回答 4

1

量角器测试不在浏览器环境中运行,而是在 node.js 中运行,因为那里没有导航器对象。JSEncrypt 依靠它在不同浏览器和版本的客户端工作。

它在 JSEncrypt 代码中的许多地方都被引用,所以我最好的选择是切换到适合您的服务器端加密库,或者如果不可能模拟具有所有预期属性/方法的全局导航器 json 对象,就好像它是一个Chrome 浏览器 - node.js 在 chrome 的 js 引擎上运行,所以应该可以正常工作。

于 2016-05-06T00:41:29.373 回答
1

我的一位同事帮助我解决了这个问题。所以这里我有一个加密功能:

this.initializeEncryptedPassword = () => {
    //console.log("before calling encrypt... ");
    browser.executeScript(() => {
      //console.log("Starting to return encryptor...");
      return window.loginEncryptor.encrypt(window.loginPassword);
    }).then((encryptedPassword) => {
      this.encryptedPassword = encryptedPassword;
    });
    //console.log("after calling encrypt...");
}

此函数由以下人员调用:

export default class Encryptor {

  constructor($window, $http) {
    'ngInject';
    this.encryptor = new $window.JSEncrypt();
    //Need to use HTTP here instead of resource since the resource does not return plain text.
    //Getting Public Key by hitting a rest uri.
    $http({method: "GET", url: "/xyz/authenticate"}).success((item) => {
        this.encryptor.setPublicKey(item);
        //set the current encryptor on the window so that testing can use it
        $window.loginEncryptor = this.encryptor;
    });
  }

  encryptPassword(credentials) {
    credentials.password = this.encryptor.encrypt(credentials.password);
  }

}

希望这对其他人有帮助。

于 2016-07-08T09:23:15.387 回答
1

在 require('jsencrypt') 你可以先写:

const { JSDOM } = require('jsdom');
const jsdom = new JSDOM('<!doctype html><html><body></body></html>');
const { window } = jsdom;
global.window = window;
global.document = window.document;
global.navigator ={userAgent: 'node.js'};

const { JSEncrypt } = require('jsencrypt')
于 2019-05-15T16:05:11.017 回答
0

您可以通过执行以下操作来模拟:

global.navigator = { appName: '量角器' };

全局.window = {};

常量 JSEncrypt = require('JSEncrypt').default;

于 2020-06-18T00:52:43.113 回答