notecipher / SQLCIPHER_LICENSE @ 7adb7c71
History | View | Annotate | Download (2.56 KB)
1 |
== SQLite Cipher == |
---|---|
2 |
|
3 |
SQLite Cipher is an SQLite extension that provides transparent 256 bit AES encryption of database files. |
4 |
Pages are encrypted before being written to disk and are decrypted when read back. |
5 |
|
6 |
Encryption is provided by the OpenSSL crypto library. |
7 |
|
8 |
SQLite Cipher was initially developed by Stephen Lombardo at Zetetic LLC (sjlombardo@zetetic.net) to provide |
9 |
the encrypted database layer for Strip, an iPhone data vault and password manager ( http://www.zetetic.net/products/strip ). |
10 |
|
11 |
The official SQLCipher software site can be found at http://www.zetetic.net/software/sqlcipher |
12 |
|
13 |
Issues or support questions on using SQLCipher should be entered into the GitHub Issue tracker: |
14 |
|
15 |
http://github.com/sjlombardo/sqlcipher/issues |
16 |
|
17 |
Please DO NOT post issues, support questions, or other problems to blog posts about SQLCipher as we do not monitor them frequently. |
18 |
|
19 |
Copyright (c) 2010 Zetetic LLC |
20 |
All rights reserved. |
21 |
|
22 |
Redistribution and use in source and binary forms, with or without |
23 |
modification, are permitted provided that the following conditions are met: |
24 |
* Redistributions of source code must retain the above copyright |
25 |
notice, this list of conditions and the following disclaimer. |
26 |
* Redistributions in binary form must reproduce the above copyright |
27 |
notice, this list of conditions and the following disclaimer in the |
28 |
documentation and/or other materials provided with the distribution. |
29 |
* Neither the name of the ZETETIC LLC nor the |
30 |
names of its contributors may be used to endorse or promote products |
31 |
derived from this software without specific prior written permission. |
32 |
|
33 |
THIS SOFTWARE IS PROVIDED BY ZETETIC LLC ''AS IS'' AND ANY |
34 |
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
35 |
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
36 |
DISCLAIMED. IN NO EVENT SHALL ZETETIC LLC BE LIABLE FOR ANY |
37 |
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
38 |
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
39 |
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
40 |
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
41 |
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
42 |
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |