是 Pro*C/C++通讯安全吗?
我需要知道 Pro*C/C++
(用于 C/C++ 的 Oracle 数据库连接)通信是否安全。是带有明文的 TCP/IP 吗?也许一些加密(共享密钥?)。某种安全隧道?
I need to know if Pro*C/C++
(Oracle database connectivity for C/C++) communication is secured. Is it TCP/IP with plaintext? maybe some encryption (shared key?). Secured Tunnel of some sort?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来,如果您希望在 Pro*C 客户端和 Oracle 数据库服务器之间建立加密通道,则需要使用 Oracle Advanced Security。
http://download.oracle.com/docs/cd /B19306_01/network.102/b14268/asointro.htm
最后确实和Pro*C关系不大因为它是使用的 SQLNET 配置,因为正确的 SQLNET 设置可以加密来自 SQL*PLUS 或使用它的任何其他内容的数据。
It looks like if you want an encrypted channel between your Pro*C client and the Oracle database server you'll need to use Oracle Advanced Security.
http://download.oracle.com/docs/cd/B19306_01/network.102/b14268/asointro.htm
In the end it is really less to do with Pro*C as it is the SQLNET configuration that is used, since the right SQLNET setup could encrypt the data from SQL*PLUS or anything else that uses it.