1

我的应用程序无法在 Galaxy s4 中运行,即在果冻豆上。我只是简单地使用该SimpleCrypto.encrypt方法将我的一些数据保存到数据库中。

让我尝试使用SimepleCrypto.decrypt方法检索这些数据。但我没有得到数据,它打印为空。

任何人都可以帮助我为什么这个问题会出现在我身上。因为它在 s2 和 s3 上工作正常,但在 s4 上却没有按预期工作。

public long insertEntry(DeviceInfo _myObject) {
    ContentValues contentValues = new ContentValues();
    contentValues.put(KEY_NAME, _myObject.getName());
    contentValues.put(KEY_ADDR, _myObject.getAddr());
    try {
        contentValues.put(KEY_ADMINPASSWD, SimpleCrypto.encrypt(SecuRemote.masterpassword,_myObject.getAdminPasswd()));
        contentValues.put(KEY_BTPIN, SimpleCrypto.encrypt(SecuRemote.masterpassword,_myObject.getBtPin()));
    } catch (Exception e) {
    }
    String alias = _myObject.getAlias();
    if((alias == null) || (alias.equals(""))) {
        alias = _myObject.getName();
    }       
    contentValues.put(KEY_ALIAS, alias);
    String type = _myObject.getType();
    if(type == null) {
        type = "";
    }       
    contentValues.put(KEY_TYPE, type);
    //SecuRemote.LOG("DEBUG: added device entry: " + _myObject.toString());
    return db.insert(DATABASE_TABLE, null, contentValues);
}

检索我正在使用以下方法的数据,该方法将从数据库中解密数据。

public DeviceInfo getEntry(String addr) 
{
        if(SecuRemote.superDebug) SecuRemote.LOG( "DeviceInfo getEntry(" + addr + ")");

    DeviceInfo rec = new DeviceInfo();

Cursor cursor = db.query(true, DATABASE_TABLE,new String[] {KEY_ID, KEY_NAME, KEY_ADDR, KEY_ADMINPASSWD, KEY_BTPIN, KEY_ALIAS, KEY_TYPE},KEY_ADDR + "= '" + addr + "'",null, null, null, null, null);

        if((cursor.getCount() == 0) || !cursor.moveToFirst()) 
               {        
            SecuRemote.LOG( "No device record found for addr: " + addr);
            cursor.close();
            return null;
        }

        rec.setName((cursor.getString(NAME_COLUMN)));
        try {
            rec.setAdminPasswd(SimpleCrypto.decrypt(SecuRemote.masterpassword, new String(cursor.getString(ADMINPASSWD_COLUMN))));
            rec.setBtPin(SimpleCrypto.decrypt(SecuRemote.masterpassword, new String(cursor.getString(BTPIN_COLUMN))));
        } catch (Exception e) {
            SecuRemote.LOG("Error decrypting device secret passwords");
        }
        rec.setAddr((cursor.getString(ADDR_COLUMN)));
        rec.setVersion(SecuRemote.getPreference("version_"+rec.getAddr(), context));
        rec.setAlias((cursor.getString(ALIAS_COLUMN)));
        rec.setType((cursor.getString(TYPE_COLUMN)));
        SecuRemote.LOG("Record found");
        cursor.close();
        return rec;
    }
4

0 回答 0