Tagged Questions
12
votes
4answers
653 views
data encryption and key management in c#
Which route to take, whats the pros and cons, which is more secure..
1) Generate AES key, encrypt the data with it and then encrypt the AES key with RSA, save the encrypted data and encrypted AES key ...
4
votes
3answers
658 views
Using DPAPI with Python?
Is there a way to use the DPAPI (Data Protection Application Programming Interface) on Windows XP with Python?
I would prefer to use an existing module if there is one that can do it. Unfortunately ...
2
votes
2answers
140 views
How can I protect the entropy?
DPAPI is great for protecting sensitive information! Unfortunately, the DPAPI "optional entropy" is basically another piece of sensitive information that must be protected. Ironic.
What are some ...
2
votes
2answers
609 views
Protecting encryption keys using DPAPI: Obvious hole?
I have a Windows.Forms based .NET desktop application that stores privileged information in a file on disk (not using .NET configuraton files), encrypted using a symmetric cryptography algorithm such ...
2
votes
1answer
369 views
Why do I get different outputs when encrypting using DPAPI?
I'm using DPAPI in C++ to encrypt some data that I need to store in a file. The thing is that I need to read that file from C#, so I need to be able to:
C++ encrypt, C++ decrypt (is working good)
C# ...
1
vote
1answer
127 views
Protecting connection strings during dev
We need to protect connection strings during development. On servers we use DPAPI which works fine. DPAPI is not an option during dev since the connection strings will need to be decrypted on many ...
0
votes
1answer
237 views
Secure Crypto keys using DPAPI
I am writing an asp.net application that encrypts sensitive data which is decrypted by another asp.net application running on different user accounts in the same domain.
I have read a lot of articles ...
0
votes
1answer
690 views
Classic ASP vs. ASP.NET encryption options
I'm working on a web site where the new pages are ASP.NET and the legacy pages are Classic ASP. Being new to development in the Windows env, I've been studying the latest technology, i.e. .NET and I ...
0
votes
1answer
390 views
DPAPI with ASP.NET Service Account
I want to encrypt data before saving it to the database. The access to the data is controlled by the application. So anyone with Admin role should be able to see the data. I want to be able to protect ...
0
votes
3answers
780 views
Using DPAPI / ProtectedData in a web farm environment with the User Store
I was wondering if anyone had successfully used DPAPI with a user store in a web farm enviroment?
Because our application is a recently converted from 1.1 to 2.0 ASP.NET app, we're using a custom ...