views:

102

answers:

1

what is the difference between DPAPI and file.encrypt (I/O)??

+1  A: 

File.Encrypt calls EncryptFile that uses the Encrypting File System which in turn uses the DPAPI to protect the encryption keys. Basically, File.Encrypt is one of many potential encryption schemes that utilize the key management capabilities provided by Windows Data Protection (DPAPI) Architecture.

JP Alioto