使用“user_Id:password”的原因是什么?对于 PKCS11,当它只接受引脚时?
对于使用 HSM 的 Oracle Database 11g 透明数据加密 (TDE),我了解以下命令用于设置主加密密钥。但是,当相应 HSM 的 PKCS#11 库仅需要 PIN 时,为什么必须指定 user_Id
呢?
SQL> ALTER SYSTEM SET ENCRYPTION KEY IDENTIFIED BY "user_Id:password"
With respect to Oracle Database 11g transparent data encryption (TDE) with HSM, I understand that the following command is used to set the master encryption key. However, why does a user_Id
have to be specified when the PKCS#11 library for the corresponding HSM only requires a PIN?
SQL> ALTER SYSTEM SET ENCRYPTION KEY IDENTIFIED BY "user_Id:password"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下答案引自Oracle论坛。
“SQL> alter system set ... 由“HSM_auth_string”标识;其中“HSM_auth_string”可以是“user_name:password”、“PIN”或只是“密码”。
The following answer is as quoted from Oracle Forum.
"SQL> alter system set ... identified by "HSM_auth_string"; where "HSM_auth_string" can be "user_name:password", a "PIN", or just a "Password"."
C_Login
需要用户类型作为其输入之一?这就是你要问的吗?相反,如果它是 UserID,那么应用程序将为许多拥有各种访问权限的用户提供规定;这些访问权限将与用户绑定。它更像是 Windows 中的许多用户配置文件。因此,很少有用户拥有较少的访问权限,也很少有用户拥有更多的访问权限。这可能是一个原因。
C_Login
requires User Type as one of its input? Is that is what you are asking about?Instead If it is UserID then the application will have provision for many users whom will have various access privileges; These access privileges will be tied to the user. Its more like many user profiles in windows. So that few users will have less access and few will have more access. This MAY be a reason.