系统间缓存- 数据加密类

发布于 2024-09-09 01:56:36 字数 114 浏览 6 评论 0原文

我想知道哪个类是我用来加密数据(第一次字符串数据)的类以及最好的加密方法(在 caché 支持的方法中)。必须为我的项目中的数据生成强加密。

欢迎任何帮助。 如果有人能给我举一些例子,我将更加感激。

I wonder which class is the class that I use to encrypt data (first time string data) and the best method of encryption (among those supported by caché). Must generate a strong encryption for data in my project.

Any help is welcome.
If someone can show me some example, I'll be even more grateful.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

叹倦 2024-09-16 01:56:36

请说明您到底要加密什么。为了加密整个数据库,系统管理门户中有一个设置,该加密在美国经过认证。要加密数据传输,您可以使用 SSH(请参阅 %Net.SSH.*)、HTTPS(请参阅具有 Https 属性的 %Net.HttpRequest)和具有 WS-Security 的 Web 服务(请参阅文档)。要在内部加密任何字符串,请参阅 $system.Encryption.Help()。

Please state what exactly do you want to encrypt. To encrypt the whole database, there is a setting in System Management Portal, this encryption is certified in US. To encrypt data transfers, you may use SSH (see %Net.SSH.*), HTTPS (see %Net.HttpRequest with Https property), and Web Services with WS-Security (see documentation). To encrypt just any string internally, see $system.Encryption.Help().

太阳公公是暖光 2024-09-16 01:56:36

我们使用 ensemble Web 服务向医疗保健领域的 Web 门户和移动应用程序提供 Base64 加密的 XML 有效负载。除了与 Web 服务相关的一些其他安全功能之外,我们实现的代码类似于下面的代码片段。

Set sc = ..xmlData.XMLExportToString(.xml)
Set xmlReturn = ##class(%System.Encryption).Base64Encode(xml)
Quit xmlReturn

We use ensemble web services to serve up Base64 encrypted XML payloads to web portals and mobile apps in the healthcare field. The code we've implemented looks something like the below snippet, in addition to some other security features related to the web service.

Set sc = ..xmlData.XMLExportToString(.xml)
Set xmlReturn = ##class(%System.Encryption).Base64Encode(xml)
Quit xmlReturn
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文