mirror of
https://github.com/bitwarden/mobile
synced 2025-12-26 05:03:39 +00:00
* Use CipherByteArray to signify encrypted byte[] * Rename CipherString and CipherByteArray to EncString and EncByteArray
13 lines
234 B
C#
13 lines
234 B
C#
namespace Bit.Core.Models.Domain
|
|
{
|
|
public class EncByteArray
|
|
{
|
|
public byte[] Buffer { get; }
|
|
|
|
public EncByteArray(byte[] encryptedByteArray)
|
|
{
|
|
Buffer = encryptedByteArray;
|
|
}
|
|
}
|
|
}
|