Nodejs 加密模块不适用于打字稿

Nodejs crypto module does not work with typescript

我正在尝试使用 vuejs 和 typescript 在我的项目中实施加密。我在 .vue 文件中成功实现了它,但是当我尝试将加密写入打字稿 class 时,mocha 测试运行它,但是当我尝试编译并在浏览器中打开它时,我得到一个 javascript 控制台错误:

app.js:128620 Uncaught ReferenceError: require is not defined
at Object.crypto (app.js:128620)
at __webpack_require__ (app.js:20)
at Object../resources/ts/Classes/Model/Crypter.ts (app.js:125233)
at __webpack_require__ (app.js:20)
at Object../resources/ts/Controller/AuthController.ts (app.js:125924)
at __webpack_require__ (app.js:20)
at Object../node_modules/babel-loader/lib/index.js?!./node_modules/babel- 
loader/lib/index.js!./node_modules/vue- 
loader/lib/index.js?!./resources/js/Components/Includes/Login.vue? 
vue&type=script&lang=js& (app.js:3308)
at __webpack_require__ (app.js:20)
at Module../resources/js/Components/Includes/Login.vue? 
vue&type=script&lang=js& (app.js:124322)
at __webpack_require__ (app.js:20)

app.js中标记的行是:

module.exports = require("crypto");

我已经在打字稿文件中尝试过不同的导入 'strategies',例如:

import * as crypto from "crypto";
import crypto from "crypto";
var crypto = require("crypto");

并将其添加到 webpack.mix.js

"node": {
        fs: "empty",
        crypto: true,
        http: true,
        https: true,
        os: true,
        vm: true,
        stream: true,
        path: true
    },

但是没用。

Crypter.ts

import crypto from "crypto";

export default class Crypter {

    public constructor() {
    }

    public static publicEncrypt(data: JSON, publicKey: string): string{
        let dataStr = JSON.stringify(data);
        let dataB64 = Buffer.from(dataStr).toString("base64");
        var buffer = Buffer.from(dataB64);
        return crypto.publicEncrypt(publicKey, buffer).toString("base64"); 
    }
}

tsconfig.json

    "compilerOptions": {
        "allowUnreachableCode": false,
        "allowUnusedLabels": true,
        "alwaysStrict": true,
        "charset": "utf8",
        "declaration": true,
        "declarationDir": "resources/ts/lib/types",
        "declarationMap": true,
        "esModuleInterop": true,
        "experimentalDecorators": true,
        "importHelpers": true,
        "lib": ["ES5", "ES6", "DOM", "DOM.Iterable", "ScriptHost"],
        "locale": "en",
        "module": "commonjs",
        "moduleResolution": "node",
        "noFallthroughCasesInSwitch": true,
        "noImplicitAny": true,
        "noImplicitReturns": true,
        "noImplicitThis": true,
        "noImplicitUseStrict": false,
        "noUnusedParameters": true,
        "outDir": "public/js",
        "baseUrl": "resources/",
        "paths": {
            "Base/*":           [ "ts/*" ],
            "@js/*":            [ "js/*" ],
            "@ts/*":            [ "ts/*" ],
            "Component/*":      [ "ts/Components/*" ],
            "Interface/*":      [ "ts/Interfaces/*" ],
            "Model/*":          [ "ts/Model/*" ],
            "Controller/*":     [ "ts/Controller/*" ],
            "Helper/*":         [ "ts/Helper/*" ]
        },
        "pretty": true,
        "sourceMap": true,
        "target": "ES5",
        "typeRoots": [
            "node_modules/@types"
        ],
        "downlevelIteration": true
    },
    "include": [
        "resources/ts/**/*"
    ],
    "exclude": [
        "node_modules",
        "**/*.spec.ts"
    ],
    "files": [
        "./node_modules/@types/node/index.d.ts"
      ]
}

我预计错误是由错误的编译或其他错误配置引起的。

您无法在 Web 应用程序中访问 nodejs 加密模块。 Node.js 使用相同的 javascript 语法,但在浏览器中不是 运行。

您可能需要安装另一个加密库,例如 crypto-js,您可以使用 npm install crypto-js 安装它。可能还有许多其他库可供您选择 (some ideas)