PowerShell v2 中的数字签名
我如何使用 PowerShell 创建数字签名,是否有任何内置命令? 它应该与打开 SSL 命令相同:
openssl dgst -sha256 -sign
TIA
How can i create digital signature using PowerShell, is there any build-in commands for that?
It should be same to the open SSL command:
openssl dgst -sha256 -sign
TIA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,但请查看使用 OpenSSL 和 PowerShell 进行代码签名 他们的 New-CodeSigningCert 脚本。
Not that I know of, but check out Code Signing with OpenSSL and PowerShell for their New-CodeSigningCert script.
这取决于您要签署的内容。
如果要签署 PowerShell 脚本,则可以使用 Set-AuthenticodeSignature cmdlet 来签署脚本。您确实需要代码签名证书才能使用此 cmdlet。
This kind of depends on what you want to sign.
If you want to sign a PowerShell Script then you can use Set-AuthenticodeSignature cmdlets to sign the script. You DO need a code signing certificate to use this cmdlets.