Tagged Questions

1
vote
3answers
57 views

Storing passwords for authentication against another system

This is not the usual question "Is it safe to store plain-text users' passwords?". No, it's not safe, we all know that. I'm writing a little application that should authenticate a …
2
votes
3answers
202 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 …
0
votes
1answer
52 views

DPAPI with ASP.NET Service Account

Hi, 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 w …
1
vote
1answer
76 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 ( …
0
votes
0answers
293 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'r …