mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Remove unused @JvmOverloads
This commit is contained in:
@@ -41,17 +41,6 @@ object CipherFactory {
|
||||
Security.addProvider(BouncyCastleProvider())
|
||||
}
|
||||
|
||||
@Throws(NoSuchAlgorithmException::class, NoSuchPaddingException::class)
|
||||
@JvmOverloads
|
||||
fun getInstance(transformation: String, androidOverride: Boolean = false): Cipher {
|
||||
// Return the native AES if it is possible
|
||||
return if (!deviceBlacklisted() && !androidOverride && hasNativeImplementation(transformation) && NativeLib.loaded()) {
|
||||
Cipher.getInstance(transformation, AESProvider())
|
||||
} else {
|
||||
Cipher.getInstance(transformation)
|
||||
}
|
||||
}
|
||||
|
||||
fun deviceBlacklisted(): Boolean {
|
||||
if (!blacklistInit) {
|
||||
blacklistInit = true
|
||||
@@ -65,6 +54,16 @@ object CipherFactory {
|
||||
return transformation == "AES/CBC/PKCS5Padding"
|
||||
}
|
||||
|
||||
@Throws(NoSuchAlgorithmException::class, NoSuchPaddingException::class)
|
||||
fun getInstance(transformation: String, androidOverride: Boolean = false): Cipher {
|
||||
// Return the native AES if it is possible
|
||||
return if (!deviceBlacklisted() && !androidOverride && hasNativeImplementation(transformation) && NativeLib.loaded()) {
|
||||
Cipher.getInstance(transformation, AESProvider())
|
||||
} else {
|
||||
Cipher.getInstance(transformation)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate appropriate cipher based on KeePass 2.x UUID's
|
||||
*/
|
||||
|
||||
@@ -74,12 +74,10 @@ object CryptoUtil {
|
||||
return ret
|
||||
}
|
||||
|
||||
@JvmOverloads
|
||||
fun hashSha256(data: ByteArray, offset: Int = 0, count: Int = data.size): ByteArray {
|
||||
return hashGen("SHA-256", data, offset, count)
|
||||
}
|
||||
|
||||
@JvmOverloads
|
||||
fun hashSha512(data: ByteArray, offset: Int = 0, count: Int = data.size): ByteArray {
|
||||
return hashGen("SHA-512", data, offset, count)
|
||||
}
|
||||
|
||||
@@ -41,7 +41,6 @@ class DeletedObject {
|
||||
|
||||
constructor()
|
||||
|
||||
@JvmOverloads
|
||||
constructor(uuid: UUID, deletionTime: Date = Date()) {
|
||||
this.uuid = uuid
|
||||
this.mDeletionTime = deletionTime
|
||||
|
||||
@@ -31,7 +31,6 @@ class NodeIdInt : NodeId<Int> {
|
||||
|
||||
constructor(source: NodeIdInt) : this(source.id)
|
||||
|
||||
@JvmOverloads
|
||||
constructor(groupId: Int = Random().nextInt()) : super() {
|
||||
this.id = groupId
|
||||
}
|
||||
|
||||
@@ -30,7 +30,6 @@ class NodeIdUUID : NodeId<UUID> {
|
||||
|
||||
constructor(source: NodeIdUUID) : this(source.id)
|
||||
|
||||
@JvmOverloads
|
||||
constructor(uuid: UUID = UUID.randomUUID()) : super() {
|
||||
this.id = uuid
|
||||
}
|
||||
|
||||
@@ -33,7 +33,6 @@ class ProtectedString : Parcelable {
|
||||
this.stringValue = toCopy.stringValue
|
||||
}
|
||||
|
||||
@JvmOverloads
|
||||
constructor(enableProtection: Boolean = false, string: String = "") {
|
||||
this.isProtected = enableProtection
|
||||
this.stringValue = string
|
||||
|
||||
@@ -62,7 +62,6 @@ abstract class NestedSettingsFragment : PreferenceFragmentCompat() {
|
||||
|
||||
private const val TAG_KEY = "NESTED_KEY"
|
||||
|
||||
@JvmOverloads
|
||||
fun newInstance(key: Screen, databaseReadOnly: Boolean = ReadOnlyHelper.READ_ONLY_DEFAULT)
|
||||
: NestedSettingsFragment {
|
||||
val fragment: NestedSettingsFragment = when (key) {
|
||||
|
||||
@@ -50,7 +50,6 @@ object MenuUtil {
|
||||
/*
|
||||
* @param checkLock Check the time lock before launch settings in LockingActivity
|
||||
*/
|
||||
@JvmOverloads
|
||||
fun onDefaultMenuOptionsItemSelected(activity: Activity,
|
||||
item: MenuItem,
|
||||
readOnly: Boolean = READ_ONLY_DEFAULT,
|
||||
|
||||
Reference in New Issue
Block a user