SQLCipher encryption

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
sandy771
Posts: 194
Joined: Tue 22 May 2007 13:57

SQLCipher encryption

Post by sandy771 » Sun 11 Jan 2015 13:06

I have a DB encrypted with this library along with the decryption key.

Can I use this library with UniDac and if so how do I go about it?

Thanks

stevel
Posts: 125
Joined: Tue 02 Nov 2010 19:01

Re: SQLCipher encryption

Post by stevel » Sun 11 Jan 2015 15:14

See the properties listed under TUniConnection.SpecificOptions (for SQLite Provider). There you would find options for database encryption.

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: SQLCipher encryption

Post by AlexP » Mon 12 Jan 2015 06:31

Hello,

To work with third-party libraries, you should specify the path to the library in the UniConnection.SpecificOptions.Values['ClientLibrary'] option:

Code: Select all

UniConnection.SpecificOptions.Values['ClientLibrary'] := 'SQLite3.dll';
More details about the Database File Encryption can be found in the documentation: http://www.devart.com/unidac/docs/datab ... yption.htm .

Post Reply