Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在基于 C++ 的应用程序中加密数据,将其存储在文件中,然后在其他 C# 应用程序中解密。我可以使用相应的 DPAPI 部件吗?
是否可以使用 保护 C++ 应用程序中的数据CryptProtectData(),将其写入文件,然后从其他基于 C# 的应用程序读取此文件并使用ProtectedData Unprotect()方法解密?
CryptProtectData()
ProtectedData
Unprotect()
是否有更好的方法在 C++ 和 C# 应用程序之间以安全的方式共享数据,以确保普通用户(不是绝对安全)的方式。