ConvertStringSecurityDescriptorToSecurityDescriptorA 函数 (sddl.h)

ConvertStringSecurityDescriptorToSecurityDescriptor 函数将字符串格式 安全描述符 转换为有效的功能安全描述符。 此函数检索 ConvertSecurityDescriptorToStringSecurityDescriptor 函数转换为字符串格式的安全描述符。

语法

BOOL ConvertStringSecurityDescriptorToSecurityDescriptorA(
  [in]  LPCSTR               StringSecurityDescriptor,
  [in]  DWORD                StringSDRevision,
  [out] PSECURITY_DESCRIPTOR *SecurityDescriptor,
  [out] PULONG               SecurityDescriptorSize
);

参数

[in] StringSecurityDescriptor

指向以 null 结尾的字符串的指针,该字符串包含要转换的 字符串格式安全描述符

[in] StringSDRevision

指定 StringSecurityDescriptor 字符串的修订级别。 目前,此值必须SDDL_REVISION_1。

[out] SecurityDescriptor

指向接收指向转换的安全描述符的指针的变量的指针。 返回的安全描述符 自相对。 若要释放返回的缓冲区,请调用 LocalFree 函数。 若要将安全描述符转换为 绝对安全描述符,请使用 MakeAbsoluteSD 函数。

[out] SecurityDescriptorSize

指向接收已转换的安全描述符的大小(以字节为单位)的变量的指针。 此参数可以为 NULL。

返回值

如果函数成功,则返回值为非零。

如果函数失败,则返回值为零。 若要获取扩展的错误信息,请调用 GetLastErrorGetLastError 可能会返回以下错误代码之一。

返回代码 描述
ERROR_INVALID_PARAMETER
参数无效。
ERROR_UNKNOWN_REVISION
SDDL 修订级别无效。
ERROR_NONE_MAPPED
在帐户查找操作中找不到输入安全描述符字符串中的 安全标识符(SID)。

言论

如果 ace_type ACCESS_ALLOWED_OBJECT_ACE_TYPE且 object_guidinherit_object_guid 均未指定 GUID,则 ConvertStringSecurityDescriptorToSecurityDescriptorace_type 转换为ACCESS_ALLOWED_ACE_TYPE。 有关 ace_typeobject_guidinherit_object_guid 字段的信息,请参阅 Ace 字符串

注意

sddl.h 标头将 ConvertStringSecurityDescriptorToSecurityDescriptor 定义为基于 UNICODE 预处理器常量定义自动选择此函数的 ANSI 或 Unicode 版本的别名。 将中性编码别名与不中性编码的代码混合使用可能会导致编译或运行时错误不匹配。 有关详细信息,请参阅函数原型的 约定。

要求

要求 价值
最低支持的客户端 Windows XP [桌面应用 |UWP 应用]
支持的最低服务器 Windows Server 2003 [桌面应用 |UWP 应用]
目标平台 窗户
标头 sddl.h
Advapi32.lib
DLL Advapi32.dll

另请参阅

访问控制概述

基本访问控制函数

ConvertSecurityDescriptorToStringSecurityDescriptor

ConvertSidToStringSid

ConvertStringSidToSid

MakeAbsolutesd

SECURITY_DESCRIPTOR