我想在Ionic项目上加密我的数据库,因为没有加密我可以在任何设备中安装apk并以root身份访问存储,我可以获取.db文件并导入到任何sql编辑器,如sqlbrowser之后我可以看到我的所有数据和表结构!
因此,我们必须对数据库进行加密,
主要问题,很多人都在谈论Cordova插件SQLCipher,但是没有tutoriel或者下面的步骤来实现Ionic项目,只是你可以在Android或iOS上找到步骤。
这是否意味着我们可以在Ionic项目的原生部分实现数据库ecryption或者什么?解决方案尚不清楚,或者它是如何运作的!
的链接这是我的测试代码:
.factory('NotesDataService', function($cordovaSQLite, $ionicPlatform) {
var db, dbName = "noteDemo.db"
function useWebSql() {
db = window.openDatabase(dbName, "1.0", "Note database", 200000)
console.info('Using webSql')
}
function useSqlLite() {
db = $cordovaSQLite.openDB({
name: dbName
})
console.info('Using SQLITE')
}
function initDatabase() {
$cordovaSQLite.execute(db, 'CREATE TABLE IF NOT EXISTS T_NOTE (id integer primary key, title, content)')
.then(function(res) {
}, onErrorQuery)
}
$ionicPlatform.ready(function() {
if (window.cordova) {
useSqlLite()
} else {
useWebSql()
}
initDatabase()
})
function onErrorQuery(err) {
console.error(err)
}
return {
createNote: function(note) {
return $cordovaSQLite.execute(db, 'INSERT INTO T_NOTE (title, content) VALUES(?, ?)', [note.title, note.content])
},
updateNote: function(note) {
return $cordovaSQLite.execute(db, 'UPDATE T_NOTE set title = ?, content = ? where id = ?', [note.title, note.content, note.id])
},
getAll: function(callback) {
$ionicPlatform.ready(function() {
$cordovaSQLite.execute(db, 'SELECT * FROM T_NOTE').then(function(results) {
var data = []
for (i = 0, max = results.rows.length; i < max; i++) {
data.push(results.rows.item(i))
}
callback(data)
}, onErrorQuery)
})
},
deleteNote: function(id) {
return $cordovaSQLite.execute(db, 'DELETE FROM T_NOTE where id = ?', [id])
},
getById: function(id, callback) {
$ionicPlatform.ready(function() {
$cordovaSQLite.execute(db, 'SELECT * FROM T_NOTE where id = ?', [id]).then(function(results) {
callback(results.rows.item(0))
})
})
}
}
})
// Even if I add the argument like that, didn 't work ;
db = $cordovaSQLite.openDB({
name: dbName,
password: "secret2"
})
答案 0 :(得分:0)
第1步:将插件添加到您的Ionic项目中。
cordova plugin add cordova-sqlcipher-adapter
第2步:添加sqlitePlugin
。
function useWebSql() {
db = window.sqlitePlugin.openDatabase({name: 'dbName.db', key: 'Enter key that you want', location: 'default'});
//db = window.openDatabase(dbName, "1.0", "Note database", 200000)
console.info('Using webSql')
}
function useSqlLite() {
db = window.sqlitePlugin.openDatabase({name: 'dbName.db', key: 'Enter key that you want', location: 'default'});
console.info('Using SQLITE')
}
function initDatabase(){
//$cordovaSQLite.execute(db, 'CREATE TABLE IF NOT EXISTS T_NOTE (id integer primary key, title, content)')
//.then(function(res){
// }, onErrorQuery)
db.transaction(function(tx) {
tx.executeSql('CREATE TABLE IF NOT EXISTS T_NOTE (id integer primary key, title, content)',function(tx,results){},onErrorQuery);
});
}
$ionicPlatform.ready(function () {
if(window.cordova){
useSqlLite()
} else {
useWebSql()
}
initDatabase()
})
function onErrorQuery(err){
console.error(err)
}