如何使用 InstallScript 加密字符串
我正在使用 InstallScript MSI 项目构建安装程序。在安装过程中,我将一些信息保存到本地文件中。该文件是根据用户的首选项创建的,并且可能包含敏感信息。
我想加密此信息,但找不到任何 InstallScript 函数来处理此问题。我知道我可以对功能文件进行加密,但该文件是在安装过程中创建的,并不是特定功能的一部分。
有谁知道使用 InstallScript 加密字符串的方法?
谢谢!
I'm building an installer using InstallScript MSI project. During installation I save some information to a local file. This file is created based on the user's preferences and it may contain sensitive information.
I would like to encrypt this information but couldn't find any InstallScript function to handle this. I know I can have feature files encrypted, but this file is create during installation and is not a part of a specific feature.
Does anyone know of a way to encrypt strings using InstallScript?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 KMoraz 所写 - 我不知道有什么内置函数可以实现这一点。
对于它的价值 - 我这样做的方式是使用外部 COM DLL 来为我进行加密/解密。
当然,您需要获取/创建这样的 DLL 才能在安装时使用和部署它。
(我使用纯安装脚本安装 - 不是 MSI)
希望这有任何帮助。
Like KMoraz wrote - I don't know of a builtin function for this.
For what it's worth - the way I do it is by using an external COM DLL to do the encryption/decryption for me.
You will of course need to obtain/create such a DLL to use and deploy it with the installation.
(I use pure installscript installation - not MSI)
Hope this helps in any way.