我的C#代码中有一个SecureString,我需要将其传递给DLL。我宁愿不进行编组,因为看起来当发生这种情况时,SecureString是未加密的(因此不再安全)。所以问题是C ++中是否存在C#SecureString等价物,以便我可以将C#代码中的SecureString传递给C ++ DLL ...或者如果有更好/不同的方式,我不需要解密SecureString将它传递给DLL。
答案 0 :(得分:1)
假设您的C ++编译器以公共语言运行时(CLR)为目标,您可以使用相同的SecureString
实现。
using namespace System;
using namespace System::Security;
int main(array<System::String ^> ^args)
{
// Define the string value to assign to a new secure string.
Char chars[4] = { 't', 'e', 's', 't' };
// Instantiate the secure string.
SecureString^ testString = gcnew SecureString();
// Assign the character array to the secure string.
for each (Char ch in chars)
{
testString->AppendChar(ch);
}
// Display secure string length.
Console::WriteLine("The length of the string is {0} characters.",
testString->Length);
delete testString;
return 0;
}
// The example displays the following output:
// The length of the string is 4 characters 4 characters