Re: [mono-android] Encrypted Database

2011-08-24 Thread cristoph
Hello Aaron, You can use Siaqodb ( http://siaqodb.com ) as local database for MonoAndroid (or MonoTouch); databases can be encrypted, very simple API, small footprint,etc -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Encrypted-Database-tp4705209p4716951.html Sent

Re: [mono-android] Encrypted Database

2011-08-21 Thread Aaron Knabb
This looks really interesting. I'll take a look at it. Thanks, -Aaron ***This e-mail message is intended only for the named recipient(s) above. It may contain information that is confidential and/or privileged and protected by applicable trade-secret law. If you are not the intended recipient, you

Re: [mono-android] Encrypted Database

2011-08-20 Thread cristoph
Hello Aaron, You can use Siaqodb ( http://siaqodb.com ) as local database for MonoAndroid (or MonoTouch); databases can be encrypted, very simple API, small footprint,etc -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Encrypted-Database-tp4705209p4718337.html Sent

Re: [mono-android] Encrypted Database

2011-08-16 Thread Karl Heinz Brehme Arredondo
com" Subject: Re: [mono-android] Encrypted Database Don't think that actually works. By the looks of it, the SQLlite implementation on Android does not have the implementation of the sqlite3_key method that actually does the encryption. Calling the ChangePassword method results in this er

Re: [mono-android] Encrypted Database

2011-08-16 Thread riteshsahu
Don't think that actually works. By the looks of it, the SQLlite implementation on Android does not have the implementation of the sqlite3_key method that actually does the encryption. Calling the ChangePassword method results in this error: I/MonoDroid( 2415): UNHANDLED EXCEPTION: System.EntryPoi

Re: [mono-android] Encrypted Database

2011-08-16 Thread Andrew Sinclair
Aaron, I *think* that if you use a password with a SQLite connection then it'll encrypt the database (eg. http://sqlite.phxsoftware.com/forums/t/130.aspx) Andy From: monodroid-boun...@lists.ximian.com [mailto:monodroid-boun...@lists.ximian.com] On Behalf Of Aaron Knabb Sent: 16 August 2

Re: [mono-android] Encrypted Database

2011-08-16 Thread Tim Kelly
I was looking for the same thing for files and didn't find anything that really did that. Short term, we're going to write something to encode our data (encode it and shift the bits). Nothing fancy, but at least it wouldn't be easily visible. Tim From: mo