使用“user_Id:password”的原因是什么?对于 PKCS11,当它只接受引脚时?

发布于 2024-09-15 09:01:32 字数 230 浏览 8 评论 0原文

对于使用 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 技术交流群。

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

发布评论

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

评论(2

一人独醉 2024-09-22 09:02:06

以下答案引自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"."

你穿错了嫁妆 2024-09-22 09:01:58
CK_DEFINE_FUNCTION(CK_RV, C_Login)(
                                       CK_SESSION_HANDLE hSession,
                                       CK_USER_TYPE userType,
                                       CK_UTF8CHAR_PTR pPin,
                                       CK_ULONG ulPinLen
                                   );

C_Login 需要用户类型作为其输入之一?这就是你要问的吗?

相反,如果它是 UserID,那么应用程序将为许多拥有各种访问权限的用户提供规定;这些访问权限将与用户绑定。它更像是 Windows 中的许多用户配置文件。因此,很少有用户拥有较少的访问权限,也很少有用户拥有更多的访问权限。这可能是一个原因。

CK_DEFINE_FUNCTION(CK_RV, C_Login)(
                                       CK_SESSION_HANDLE hSession,
                                       CK_USER_TYPE userType,
                                       CK_UTF8CHAR_PTR pPin,
                                       CK_ULONG ulPinLen
                                   );

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文