mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-04 05:17:36 +03:00
Force twofish padding compatibility #955
This commit is contained in:
parent
949905f6e2
commit
346b517c9d
4 changed files with 12 additions and 3 deletions
|
@ -38,8 +38,12 @@ object CipherFactory {
|
|||
}
|
||||
|
||||
@Throws(NoSuchAlgorithmException::class, NoSuchPaddingException::class, InvalidKeyException::class, InvalidAlgorithmParameterException::class)
|
||||
fun getTwofish(opmode: Int, key: ByteArray, IV: ByteArray): Cipher {
|
||||
val cipher: Cipher = Cipher.getInstance("Twofish/CBC/PKCS7PADDING")
|
||||
fun getTwofish(opmode: Int, key: ByteArray, IV: ByteArray, forceCompatibility: Boolean = false): Cipher {
|
||||
val cipher: Cipher = if (forceCompatibility) {
|
||||
Cipher.getInstance("Twofish/CBC/NoPadding")
|
||||
} else {
|
||||
Cipher.getInstance("Twofish/CBC/PKCS7PADDING")
|
||||
}
|
||||
cipher.init(opmode, SecretKeySpec(key, "AES"), IvParameterSpec(IV))
|
||||
return cipher
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue