1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-07-05 12:06:18 +02:00

Compat. - no header for AesCbc256_B64 cipherstring

This commit is contained in:
Kyle Spearrin 2017-04-26 11:28:03 -04:00
parent c8219b29c0
commit 70c57928e7

View File

@ -83,13 +83,18 @@ namespace Bit.App.Models
}
EncryptionType = encryptionType;
EncryptedString = string.Format("{0}.{1}|{2}", (byte)encryptionType, initializationVector, cipherText);
EncryptedString = string.Format("{0}|{1}", initializationVector, cipherText);
if(!string.IsNullOrWhiteSpace(mac))
{
EncryptedString = string.Format("{0}|{1}", EncryptedString, mac);
}
if(EncryptionType != EncryptionType.AesCbc256_B64)
{
EncryptedString = string.Format("{0}.{1}", (byte)EncryptionType, EncryptedString);
}
CipherText = cipherText;
InitializationVector = initializationVector;
Mac = mac;