securestring
Will SecureString give me any advantage when it comes to MSIL decompilation?
Is it in any way better to do this char[] sec = { \'a\', \'b\', \'c\'}; SecureString s = new SecureString();[详细]
2023-03-17 03:32 分类:问答SecureString for storing in memory and presenting passwords? Or something else?
I have been writing a little program for myself using C# that I can use to store my passwords and then retrieve them for viewing/editing.[详细]
2023-03-15 16:43 分类:问答How to send a string with security, iphone
How to send a string in most securely. Got some issue with encryption. My encrypted value in iPhone is not similar to webapp.[详细]
2023-02-28 12:07 分类:问答tracking sensitive data in memory from my WPF application and C# libraries
I\'ve been trying to go through a couple of my C# libraries and a WPF application that uses them and replace plain-text, string passwords with SecureString.I do have to convert a SecureString back to[详细]
2023-02-03 01:26 分类:问答Use SecureString for credit card numbers
I\'ve been looking into using the System.Security.SecureString class to hold credit card numbers开发者_运维知识库 in memory while they are being processed.Has anyone used the SecureString class for ho[详细]
2023-01-08 17:08 分类:问答Securely store a password in program code?
My application makes use of the RijndaelManaged class to encrypt data.As a part of this encryption, I use a SecureString object loaded with a password which get\'s get converted to a byte array and lo[详细]
2023-01-03 06:01 分类:问答using securestring for a sql connection
I want to use a SecureString to hold a connection开发者_开发知识库 string for a database. But as soon as I set the SqlConnection object\'s ConnectionString property to the value of the securestring su[详细]
2022-12-14 11:57 分类:问答C# SecureString Question
Is there any way to get the value of a SecureString without comprising security? For example, in the code bel开发者_高级运维ow as soon as you do PtrToStringBSTR the string is no longer secure because[详细]
2022-12-12 07:35 分类:问答