Use of amalgamation

We are currently using sqlite3 amalgamation for all our supported platforms (mobile & desktop). Now, I ran the xcode project from the community edition and it generated a new amalgamation including the SQLCipher code. Can I use this new amalgamation for all the platforms, similarly to the sqlite basic one, and just add OpenSSL to the project (or another lib?)?

Hello @priand,

Yes, you would need to link a supported crypto library. Here are basic instructions for building from source.

Nick Parker

Thanks for your reply Nick, I’ll try that.