2013-09-06 10:17:01 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Dominik Schürmann <dominik@dominikschuermann.de>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2013-09-15 07:52:05 -04:00
|
|
|
package org.sufficientlysecure.keychain.service.remote;
|
2013-09-06 06:34:06 -04:00
|
|
|
|
2013-09-06 13:06:17 -04:00
|
|
|
import org.spongycastle.bcpg.HashAlgorithmTags;
|
|
|
|
import org.spongycastle.openpgp.PGPEncryptedData;
|
2013-09-06 06:34:06 -04:00
|
|
|
import org.sufficientlysecure.keychain.Id;
|
|
|
|
|
|
|
|
public class AppSettings {
|
|
|
|
private String packageName;
|
|
|
|
private long keyId = Id.key.none;
|
2013-09-06 12:54:55 -04:00
|
|
|
private int encryptionAlgorithm;
|
|
|
|
private int hashAlgorithm;
|
|
|
|
private int compression;
|
2013-09-06 06:34:06 -04:00
|
|
|
|
|
|
|
public AppSettings() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public AppSettings(String packageName) {
|
|
|
|
super();
|
|
|
|
this.packageName = packageName;
|
2013-09-06 12:54:55 -04:00
|
|
|
// defaults:
|
2013-09-20 15:43:48 -04:00
|
|
|
this.encryptionAlgorithm = PGPEncryptedData.AES_256;
|
|
|
|
this.hashAlgorithm = HashAlgorithmTags.SHA512;
|
2013-09-09 06:59:53 -04:00
|
|
|
this.compression = Id.choice.compression.zlib;
|
2013-09-06 06:34:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getPackageName() {
|
|
|
|
return packageName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPackageName(String packageName) {
|
|
|
|
this.packageName = packageName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getKeyId() {
|
|
|
|
return keyId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setKeyId(long scretKeyId) {
|
|
|
|
this.keyId = scretKeyId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getEncryptionAlgorithm() {
|
|
|
|
return encryptionAlgorithm;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEncryptionAlgorithm(int encryptionAlgorithm) {
|
|
|
|
this.encryptionAlgorithm = encryptionAlgorithm;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getHashAlgorithm() {
|
|
|
|
return hashAlgorithm;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setHashAlgorithm(int hashAlgorithm) {
|
|
|
|
this.hashAlgorithm = hashAlgorithm;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getCompression() {
|
|
|
|
return compression;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCompression(int compression) {
|
|
|
|
this.compression = compression;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|