mirror of
https://github.com/bitwarden/mobile
synced 2025-12-25 20:53:25 +00:00
Compat. - no header for AesCbc256_B64 cipherstring
This commit is contained in:
@@ -83,13 +83,18 @@ namespace Bit.App.Models
|
|||||||
}
|
}
|
||||||
|
|
||||||
EncryptionType = encryptionType;
|
EncryptionType = encryptionType;
|
||||||
EncryptedString = string.Format("{0}.{1}|{2}", (byte)encryptionType, initializationVector, cipherText);
|
EncryptedString = string.Format("{0}|{1}", initializationVector, cipherText);
|
||||||
|
|
||||||
if(!string.IsNullOrWhiteSpace(mac))
|
if(!string.IsNullOrWhiteSpace(mac))
|
||||||
{
|
{
|
||||||
EncryptedString = string.Format("{0}|{1}", EncryptedString, mac);
|
EncryptedString = string.Format("{0}|{1}", EncryptedString, mac);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(EncryptionType != EncryptionType.AesCbc256_B64)
|
||||||
|
{
|
||||||
|
EncryptedString = string.Format("{0}.{1}", (byte)EncryptionType, EncryptedString);
|
||||||
|
}
|
||||||
|
|
||||||
CipherText = cipherText;
|
CipherText = cipherText;
|
||||||
InitializationVector = initializationVector;
|
InitializationVector = initializationVector;
|
||||||
Mac = mac;
|
Mac = mac;
|
||||||
|
|||||||
Reference in New Issue
Block a user