matlab中的安全检查
我已经完成了 matlab GUI 开发。 目前,分配事宜正在讨论中。 考虑到安全性,我们希望在运行 GUI 之前进行身份验证,以查看用户是否位于有效网络中。我们的第一个建议是检查网络域/用户帐户作为选项。 用matlab怎么实现呢?
欢迎任何建议。 谢谢你!
I've finished a matlab GUI development.
Now the distribution is under discussion.
Concerning the security, we want to have a authentication prior to running the GUI, to see if the user is in the valid network. Our first proposal is to check network domain/user account as an option.
How can it be achieved with matlab?
Any suggestions are welcome.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过
getenv
、winqueryreg
以及system
和hostid
。更一般的情况请参见操作系统界面。You can get this kind of informations with
getenv
,winqueryreg
and maybesystem
andhostid
. More generally see Operating System Interface.