1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-13 23:03:23 +00:00

crypto service implementation

This commit is contained in:
Kyle Spearrin
2019-04-08 16:04:41 -04:00
parent 3f5115728b
commit f0eca137ef
6 changed files with 630 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ namespace Bit.Core.Models.Domain
{
private string _decryptedValue;
public CipherString(EncryptionType encryptionType, string data, string iv, string mac)
public CipherString(EncryptionType encryptionType, string data, string iv = null, string mac = null)
{
if(string.IsNullOrWhiteSpace(data))
{