• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

在Electron使用加密

用户头像
it1352
帮助1

问题说明

我正在尝试在电子项目中使用加密货币.我在DevTool控制台中收到未捕获的TypeError:crypto.randomBytes不是函数"错误.这就是我所做的:

I am trying to use crypto in my electron project. I am getting "Uncaught TypeError: crypto.randomBytes is not a function" error in the DevTool console. This is what I did:

  • 按照此处
  • 创建的示例电子项目
  • 添加了 crypto = require('crypto')作为preload.js的第一行
  • 添加了 console.log(crypto.randomBytes(4))作为renderer.js的第一行
  • Created a sample electron project as mentioned here
  • Added crypto = require('crypto') as the first line in preload.js
  • Added console.log(crypto.randomBytes(4)) as the first line in renderer.js

我收到上面提到的错误.谷歌搜索没有提出任何相关答案.

I get the error mentioned above. Googling didn't bring up any relevant answers.

我该如何进行?

预先感谢

正确答案

#1

Chromium已包含名为"crypto"的全局变量,因此您无法重新分配它,而应更改全局变量f.e的名称

Chromium already contains global, that called "crypto", so you cannot reassign it and should change name of your global variable, f.e

nodeCrypto = require('crypto') // or window.nodeCrypto = require('crypto')

,然后在渲染器中

console.log(nodeCrypto.randomBytes(4))

或者您可以在 BrowserWindow 参数的 webPreferences 块中添加 nodeIntegration:true ,并在某些模块中直接使用renderer中的require(如果您不想将全局文件放入预加载文件中.

Or you can add nodeIntegration:true in webPreferences block in BrowserWindow params, and use require directly from renderer in some of yours modules (if you don't want to put in global in preload file).

const crypto = require('crypto'); // or const crypto = window.require('crypto')

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcgabef
系列文章
更多 icon
同类精品
更多 icon
继续加载