Tagged Questions
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 ...
3
votes
1answer
97 views
Can keychains in IOS be compared to DPAPI in Windows?
On iOS, I am looking for an API equivalent to the encrypt/decrpyt DPAPI functions available on Windows (with CRYPTPROTECT_LOCAL_MACHINE flag not set).
The objective is to persist some application ...
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
608 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 ...
1
vote
1answer
1k views
Microsoft Access 2010 and ODBC Connection string security
I am using Microsoft Access 2010 with unbound forms. No linked tables allowed, otherwise the connections string is stored in the table definitions. So it follows that we will use a query definition ...
1
vote
3answers
240 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 against an external ...