2012-02-12 51 views
1

正在嘗試使用protectedmemory和protecteddata在.NET應用程序保護字節的數據.NET

形式本網站保護字節的數據,http://www.codedigest.com/Articles/Framework/69_Data_Encryption_and_Decryption_using_DPAPI_classes_in_NET.aspx 是,似乎我只能保護幾個字節

而且,我不能拿到這裏提供http://msdn.microsoft.com/en-us/library/ms229741(v=vs.85).aspx樣品運行

我收到以下錯誤:

名稱「MemoryProtectionScope」沒有聲明。 (BC30451)
名稱'DataProtectionScope'未聲明。 (BC30451)
名稱'ProtectedMemory'未聲明。 (BC30451)

任何人都可以幫助我用這樣做的其他方法。

+0

您需要添加對System.Security的引用。這些類型在該程序集中定義。 – driis 2012-02-12 16:31:48

+0

你爲什麼要使用這些功能?他們似乎對我毫無用處。 – CodesInChaos 2012-02-13 16:35:42

回答

1

是什麼讓你認爲你只能保護那篇文章的幾個字節?這個API非常簡單 - 記住加密不會發生,新的數組會返回加密的內容。

下面是使用ProtectedData.Protectback的一個完整的例子:

void Main() 
{ 
    string data = new WebClient().DownloadString("http://www.stackoverflow.com"); 
    var buffer = Encoding.UTF8.GetBytes(data); 
    buffer = System.Security.Cryptography.ProtectedData.Protect(buffer, null, System.Security.Cryptography.DataProtectionScope.CurrentUser); 
    // Data is now protected. 

    // Unprotect 
    buffer = System.Security.Cryptography.ProtectedData.Unprotect(buffer, null, System.Security.Cryptography.DataProtectionScope.CurrentUser); 
    string decrypted = Encoding.UTF8.GetString(buffer); 
    Debug.Assert(data == decrypted); 
} 

此外,您將需要添加一個引用到System.Security集。

+0

是否可以在我的應用程序中存儲加密的字節,而不是在我的應用程序中加密 – Smith 2012-02-12 16:43:17

+0

我不確定你的意思......是的,當然,你可以存儲加密的字節,然後解密它們 - 那是什麼你需要 ? – driis 2012-02-12 16:46:59

+0

是的,這就是我需要的,我如何以及在哪裏將加密的字節存儲在我的應用程序代碼或文件系統中 – Smith 2012-02-12 16:51:00