2016-05-02 09:52:09 +03:00
|
|
|
|
using System;
|
2016-07-07 05:33:50 +03:00
|
|
|
|
using System.Diagnostics;
|
2016-05-02 09:52:09 +03:00
|
|
|
|
using System.Text;
|
|
|
|
|
using Bit.App.Abstractions;
|
|
|
|
|
using Bit.App.Models;
|
2016-08-02 03:23:46 +03:00
|
|
|
|
using PCLCrypto;
|
2016-08-06 04:59:25 +03:00
|
|
|
|
using System.Linq;
|
2017-04-20 07:06:11 +03:00
|
|
|
|
using Bit.App.Enums;
|
|
|
|
|
using System.Collections.Generic;
|
2017-04-20 17:20:24 +03:00
|
|
|
|
using Newtonsoft.Json;
|
2016-05-02 09:52:09 +03:00
|
|
|
|
|
|
|
|
|
namespace Bit.App.Services
|
|
|
|
|
{
|
|
|
|
|
public class CryptoService : ICryptoService
|
|
|
|
|
{
|
|
|
|
|
private const string KeyKey = "key";
|
2016-08-06 04:59:25 +03:00
|
|
|
|
private const string PreviousKeyKey = "previousKey";
|
2017-04-20 07:06:11 +03:00
|
|
|
|
private const string PrivateKeyKey = "privateKey";
|
2017-04-20 17:20:24 +03:00
|
|
|
|
private const string OrgKeysKey = "orgKeys";
|
2016-05-02 09:52:09 +03:00
|
|
|
|
private const int InitializationVectorSize = 16;
|
|
|
|
|
|
|
|
|
|
private readonly ISecureStorageService _secureStorage;
|
2016-08-02 03:23:46 +03:00
|
|
|
|
private readonly IKeyDerivationService _keyDerivationService;
|
2017-04-22 21:36:31 +03:00
|
|
|
|
private SymmetricCryptoKey _key;
|
|
|
|
|
private SymmetricCryptoKey _legacyEtmKey;
|
|
|
|
|
private SymmetricCryptoKey _previousKey;
|
|
|
|
|
private IDictionary<string, SymmetricCryptoKey> _orgKeys;
|
2017-04-20 07:06:11 +03:00
|
|
|
|
private byte[] _privateKey;
|
2016-05-02 09:52:09 +03:00
|
|
|
|
|
2016-08-02 03:23:46 +03:00
|
|
|
|
public CryptoService(
|
|
|
|
|
ISecureStorageService secureStorage,
|
|
|
|
|
IKeyDerivationService keyDerivationService)
|
2016-05-02 09:52:09 +03:00
|
|
|
|
{
|
|
|
|
|
_secureStorage = secureStorage;
|
2016-08-02 03:23:46 +03:00
|
|
|
|
_keyDerivationService = keyDerivationService;
|
2016-05-02 09:52:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-22 21:36:31 +03:00
|
|
|
|
public SymmetricCryptoKey Key
|
2016-05-02 09:52:09 +03:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2017-04-20 21:23:58 +03:00
|
|
|
|
if(_key == null && _secureStorage.Contains(KeyKey))
|
2016-05-02 09:52:09 +03:00
|
|
|
|
{
|
2017-04-20 21:23:58 +03:00
|
|
|
|
var keyBytes = _secureStorage.Retrieve(KeyKey);
|
|
|
|
|
if(keyBytes != null)
|
|
|
|
|
{
|
2017-04-22 21:36:31 +03:00
|
|
|
|
_key = new SymmetricCryptoKey(keyBytes);
|
2017-04-20 21:23:58 +03:00
|
|
|
|
}
|
2016-05-02 09:52:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
2016-08-02 03:23:46 +03:00
|
|
|
|
return _key;
|
2016-05-02 09:52:09 +03:00
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
2016-05-03 00:50:16 +03:00
|
|
|
|
if(value != null)
|
|
|
|
|
{
|
2017-04-20 06:16:09 +03:00
|
|
|
|
_secureStorage.Store(KeyKey, value.Key);
|
2016-05-03 00:50:16 +03:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2016-08-06 04:59:25 +03:00
|
|
|
|
PreviousKey = _key;
|
2016-05-03 00:50:16 +03:00
|
|
|
|
_secureStorage.Delete(KeyKey);
|
2016-08-02 03:23:46 +03:00
|
|
|
|
_key = null;
|
2017-04-20 06:16:09 +03:00
|
|
|
|
_legacyEtmKey = null;
|
2016-05-03 00:50:16 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-22 21:36:31 +03:00
|
|
|
|
public SymmetricCryptoKey PreviousKey
|
2016-08-06 04:59:25 +03:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2017-04-20 21:23:58 +03:00
|
|
|
|
if(_previousKey == null && _secureStorage.Contains(PreviousKeyKey))
|
2016-08-06 04:59:25 +03:00
|
|
|
|
{
|
2017-04-20 21:23:58 +03:00
|
|
|
|
var keyBytes = _secureStorage.Retrieve(PreviousKeyKey);
|
|
|
|
|
if(keyBytes != null)
|
|
|
|
|
{
|
2017-04-22 21:36:31 +03:00
|
|
|
|
_previousKey = new SymmetricCryptoKey(keyBytes);
|
2017-04-20 21:23:58 +03:00
|
|
|
|
}
|
2016-08-06 04:59:25 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _previousKey;
|
|
|
|
|
}
|
|
|
|
|
private set
|
|
|
|
|
{
|
|
|
|
|
if(value != null)
|
|
|
|
|
{
|
2017-04-20 06:16:09 +03:00
|
|
|
|
_secureStorage.Store(PreviousKeyKey, value.Key);
|
2016-08-06 04:59:25 +03:00
|
|
|
|
_previousKey = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-06 06:58:31 +03:00
|
|
|
|
public bool KeyChanged
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if(Key == null)
|
|
|
|
|
{
|
2017-02-10 06:06:39 +03:00
|
|
|
|
return false;
|
2016-08-06 06:58:31 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(PreviousKey == null)
|
|
|
|
|
{
|
|
|
|
|
return Key != null;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 06:16:09 +03:00
|
|
|
|
return !PreviousKey.Key.SequenceEqual(Key.Key);
|
2016-08-06 06:58:31 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-08-06 04:59:25 +03:00
|
|
|
|
|
2017-04-20 07:06:11 +03:00
|
|
|
|
public byte[] PrivateKey
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2017-04-20 21:23:58 +03:00
|
|
|
|
if(_privateKey == null && _secureStorage.Contains(PrivateKeyKey))
|
2017-04-20 07:06:11 +03:00
|
|
|
|
{
|
|
|
|
|
_privateKey = _secureStorage.Retrieve(PrivateKeyKey);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _privateKey;
|
|
|
|
|
}
|
2017-04-20 17:29:18 +03:00
|
|
|
|
private set
|
2017-04-20 07:06:11 +03:00
|
|
|
|
{
|
|
|
|
|
if(value != null)
|
|
|
|
|
{
|
|
|
|
|
_secureStorage.Store(PrivateKeyKey, value);
|
|
|
|
|
_privateKey = value;
|
|
|
|
|
}
|
2017-04-20 17:20:24 +03:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_secureStorage.Delete(PrivateKeyKey);
|
|
|
|
|
_privateKey = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-22 21:36:31 +03:00
|
|
|
|
public IDictionary<string, SymmetricCryptoKey> OrgKeys
|
2017-04-20 17:20:24 +03:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if(_orgKeys == null && _secureStorage.Contains(OrgKeysKey))
|
|
|
|
|
{
|
|
|
|
|
var orgKeysDictBytes = _secureStorage.Retrieve(OrgKeysKey);
|
|
|
|
|
if(orgKeysDictBytes != null)
|
|
|
|
|
{
|
|
|
|
|
var orgKeysDictJson = Encoding.UTF8.GetString(orgKeysDictBytes, 0, orgKeysDictBytes.Length);
|
|
|
|
|
if(!string.IsNullOrWhiteSpace(orgKeysDictJson))
|
|
|
|
|
{
|
2017-04-22 21:36:31 +03:00
|
|
|
|
_orgKeys = new Dictionary<string, SymmetricCryptoKey>();
|
2017-04-20 18:23:30 +03:00
|
|
|
|
var orgKeysDict = JsonConvert.DeserializeObject<IDictionary<string, byte[]>>(orgKeysDictJson);
|
2017-04-20 17:20:24 +03:00
|
|
|
|
foreach(var item in orgKeysDict)
|
|
|
|
|
{
|
2017-04-22 21:36:31 +03:00
|
|
|
|
_orgKeys.Add(item.Key, new SymmetricCryptoKey(item.Value));
|
2017-04-20 17:20:24 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _orgKeys;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if(value != null && value.Any())
|
|
|
|
|
{
|
2017-04-20 18:23:30 +03:00
|
|
|
|
var dict = new Dictionary<string, byte[]>();
|
2017-04-20 17:20:24 +03:00
|
|
|
|
foreach(var item in value)
|
|
|
|
|
{
|
|
|
|
|
dict.Add(item.Key, item.Value.Key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var dictJson = JsonConvert.SerializeObject(dict);
|
|
|
|
|
var dictBytes = Encoding.UTF8.GetBytes(dictJson);
|
|
|
|
|
_secureStorage.Store(OrgKeysKey, dictBytes);
|
|
|
|
|
_orgKeys = value;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_secureStorage.Delete(OrgKeysKey);
|
|
|
|
|
_orgKeys = null;
|
|
|
|
|
}
|
2017-04-20 07:06:11 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-22 21:36:31 +03:00
|
|
|
|
public void SetPrivateKey(CipherString privateKeyEnc, SymmetricCryptoKey key)
|
2017-04-20 07:06:11 +03:00
|
|
|
|
{
|
|
|
|
|
var bytes = DecryptToBytes(privateKeyEnc, key);
|
|
|
|
|
PrivateKey = bytes;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-22 21:36:31 +03:00
|
|
|
|
public SymmetricCryptoKey GetOrgKey(string orgId)
|
2017-04-20 07:06:11 +03:00
|
|
|
|
{
|
2017-04-20 17:20:24 +03:00
|
|
|
|
if(OrgKeys == null || !OrgKeys.ContainsKey(orgId))
|
2017-04-20 07:06:11 +03:00
|
|
|
|
{
|
2017-04-20 17:20:24 +03:00
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return OrgKeys[orgId];
|
|
|
|
|
}
|
2017-04-20 07:06:11 +03:00
|
|
|
|
|
2017-04-20 18:23:30 +03:00
|
|
|
|
public void ClearOrgKey(string orgId)
|
2017-04-20 17:20:24 +03:00
|
|
|
|
{
|
|
|
|
|
var localOrgKeys = OrgKeys;
|
|
|
|
|
if(localOrgKeys == null || !localOrgKeys.ContainsKey(orgId))
|
|
|
|
|
{
|
|
|
|
|
return;
|
2017-04-20 07:06:11 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 17:20:24 +03:00
|
|
|
|
localOrgKeys.Remove(orgId);
|
|
|
|
|
// invoke setter
|
|
|
|
|
OrgKeys = localOrgKeys;
|
2017-04-20 07:06:11 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 17:20:24 +03:00
|
|
|
|
public void ClearKeys()
|
|
|
|
|
{
|
|
|
|
|
OrgKeys = null;
|
|
|
|
|
Key = null;
|
|
|
|
|
PrivateKey = null;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-22 21:36:31 +03:00
|
|
|
|
public SymmetricCryptoKey AddOrgKey(string orgId, CipherString encOrgKey, byte[] privateKey)
|
2017-04-20 07:06:11 +03:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2017-04-20 17:20:24 +03:00
|
|
|
|
var localOrgKeys = OrgKeys;
|
2017-04-20 07:06:11 +03:00
|
|
|
|
var decBytes = RsaDecryptToBytes(encOrgKey, privateKey);
|
2017-04-22 21:36:31 +03:00
|
|
|
|
var key = new SymmetricCryptoKey(decBytes);
|
2017-04-20 17:20:24 +03:00
|
|
|
|
if(localOrgKeys.ContainsKey(orgId))
|
|
|
|
|
{
|
|
|
|
|
localOrgKeys[orgId] = key;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
localOrgKeys.Add(orgId, key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// invoke setter
|
|
|
|
|
OrgKeys = localOrgKeys;
|
|
|
|
|
return key;
|
2017-04-20 07:06:11 +03:00
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
Debug.WriteLine("Cannot set org key. Decryption failed.");
|
2017-04-20 17:20:24 +03:00
|
|
|
|
return null;
|
2017-04-20 07:06:11 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-22 21:36:31 +03:00
|
|
|
|
public CipherString Encrypt(string plaintextValue, SymmetricCryptoKey key = null)
|
2016-05-02 09:52:09 +03:00
|
|
|
|
{
|
2017-04-20 06:16:09 +03:00
|
|
|
|
if(key == null)
|
2016-05-02 09:52:09 +03:00
|
|
|
|
{
|
2017-04-20 06:16:09 +03:00
|
|
|
|
key = Key;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(key == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(key));
|
2016-05-02 09:52:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(plaintextValue == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(plaintextValue));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var plaintextBytes = Encoding.UTF8.GetBytes(plaintextValue);
|
|
|
|
|
|
2016-08-02 03:23:46 +03:00
|
|
|
|
var provider = WinRTCrypto.SymmetricKeyAlgorithmProvider.OpenAlgorithm(SymmetricAlgorithm.AesCbcPkcs7);
|
2017-04-20 06:16:09 +03:00
|
|
|
|
var cryptoKey = provider.CreateSymmetricKey(key.EncKey);
|
2016-08-02 03:23:46 +03:00
|
|
|
|
var iv = WinRTCrypto.CryptographicBuffer.GenerateRandom(provider.BlockLength);
|
|
|
|
|
var encryptedBytes = WinRTCrypto.CryptographicEngine.Encrypt(cryptoKey, plaintextBytes, iv);
|
2017-04-20 06:16:09 +03:00
|
|
|
|
var mac = key.MacKey != null ? ComputeMac(encryptedBytes, iv, key.MacKey) : null;
|
2016-12-11 06:05:52 +03:00
|
|
|
|
|
2017-04-22 21:36:31 +03:00
|
|
|
|
return new CipherString(key.EncryptionType, Convert.ToBase64String(iv),
|
|
|
|
|
Convert.ToBase64String(encryptedBytes), mac);
|
2016-05-02 09:52:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-22 21:36:31 +03:00
|
|
|
|
public string Decrypt(CipherString encyptedValue, SymmetricCryptoKey key = null)
|
2016-05-02 09:52:09 +03:00
|
|
|
|
{
|
2016-08-06 10:10:54 +03:00
|
|
|
|
try
|
2016-05-02 09:52:09 +03:00
|
|
|
|
{
|
2017-04-20 07:06:11 +03:00
|
|
|
|
var bytes = DecryptToBytes(encyptedValue, key);
|
|
|
|
|
return Encoding.UTF8.GetString(bytes, 0, bytes.Length).TrimEnd('\0');
|
|
|
|
|
}
|
|
|
|
|
catch(Exception e)
|
|
|
|
|
{
|
|
|
|
|
Debug.WriteLine("Could not decrypt '{0}'. {1}", encyptedValue, e.Message);
|
|
|
|
|
return "[error: cannot decrypt]";
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-20 06:16:09 +03:00
|
|
|
|
|
2017-04-22 21:36:31 +03:00
|
|
|
|
public byte[] DecryptToBytes(CipherString encyptedValue, SymmetricCryptoKey key = null)
|
2017-04-20 07:06:11 +03:00
|
|
|
|
{
|
|
|
|
|
if(key == null)
|
|
|
|
|
{
|
|
|
|
|
key = Key;
|
|
|
|
|
}
|
2016-08-06 10:10:54 +03:00
|
|
|
|
|
2017-04-20 07:06:11 +03:00
|
|
|
|
if(key == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(key));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(encyptedValue == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(encyptedValue));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(encyptedValue.EncryptionType == Enums.EncryptionType.AesCbc128_HmacSha256_B64 &&
|
|
|
|
|
key.EncryptionType == Enums.EncryptionType.AesCbc256_B64)
|
|
|
|
|
{
|
|
|
|
|
// Old encrypt-then-mac scheme, swap out the key
|
|
|
|
|
if(_legacyEtmKey == null)
|
2016-08-06 10:10:54 +03:00
|
|
|
|
{
|
2017-04-22 21:36:31 +03:00
|
|
|
|
_legacyEtmKey = new SymmetricCryptoKey(key.Key, Enums.EncryptionType.AesCbc128_HmacSha256_B64);
|
2016-08-06 10:10:54 +03:00
|
|
|
|
}
|
2016-05-02 09:52:09 +03:00
|
|
|
|
|
2017-04-20 07:06:11 +03:00
|
|
|
|
key = _legacyEtmKey;
|
|
|
|
|
}
|
2017-04-20 06:16:09 +03:00
|
|
|
|
|
2017-04-20 07:06:11 +03:00
|
|
|
|
if(encyptedValue.EncryptionType != key.EncryptionType)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("encType unavailable.");
|
|
|
|
|
}
|
2017-04-20 06:16:09 +03:00
|
|
|
|
|
2017-04-20 07:06:11 +03:00
|
|
|
|
if(key.MacKey != null && !string.IsNullOrWhiteSpace(encyptedValue.Mac))
|
|
|
|
|
{
|
|
|
|
|
var computedMac = ComputeMac(encyptedValue.CipherTextBytes,
|
|
|
|
|
encyptedValue.InitializationVectorBytes, key.MacKey);
|
|
|
|
|
if(computedMac != encyptedValue.Mac)
|
2017-04-20 06:16:09 +03:00
|
|
|
|
{
|
2017-04-20 07:06:11 +03:00
|
|
|
|
throw new InvalidOperationException("MAC failed.");
|
2017-04-20 06:16:09 +03:00
|
|
|
|
}
|
2017-04-20 07:06:11 +03:00
|
|
|
|
}
|
2017-04-20 06:16:09 +03:00
|
|
|
|
|
2017-04-20 07:06:11 +03:00
|
|
|
|
var provider = WinRTCrypto.SymmetricKeyAlgorithmProvider.OpenAlgorithm(SymmetricAlgorithm.AesCbcPkcs7);
|
|
|
|
|
var cryptoKey = provider.CreateSymmetricKey(key.EncKey);
|
|
|
|
|
var decryptedBytes = WinRTCrypto.CryptographicEngine.Decrypt(cryptoKey, encyptedValue.CipherTextBytes,
|
|
|
|
|
encyptedValue.InitializationVectorBytes);
|
|
|
|
|
return decryptedBytes;
|
|
|
|
|
}
|
2016-05-02 09:52:09 +03:00
|
|
|
|
|
2017-04-20 07:06:11 +03:00
|
|
|
|
public byte[] RsaDecryptToBytes(CipherString encyptedValue, byte[] privateKey)
|
|
|
|
|
{
|
|
|
|
|
if(privateKey == null)
|
|
|
|
|
{
|
|
|
|
|
privateKey = PrivateKey;
|
2016-07-07 05:33:50 +03:00
|
|
|
|
}
|
2017-04-20 07:06:11 +03:00
|
|
|
|
|
|
|
|
|
if(privateKey == null)
|
2016-07-07 05:33:50 +03:00
|
|
|
|
{
|
2017-04-20 07:06:11 +03:00
|
|
|
|
throw new ArgumentNullException(nameof(privateKey));
|
2016-07-07 05:33:50 +03:00
|
|
|
|
}
|
2017-04-20 07:06:11 +03:00
|
|
|
|
|
2017-04-21 20:40:29 +03:00
|
|
|
|
IAsymmetricKeyAlgorithmProvider provider = null;
|
|
|
|
|
switch(encyptedValue.EncryptionType)
|
2017-04-20 07:06:11 +03:00
|
|
|
|
{
|
2017-04-21 20:40:29 +03:00
|
|
|
|
case EncryptionType.Rsa2048_OaepSha256_B64:
|
|
|
|
|
provider = WinRTCrypto.AsymmetricKeyAlgorithmProvider.OpenAlgorithm(AsymmetricAlgorithm.RsaOaepSha256);
|
|
|
|
|
break;
|
|
|
|
|
case EncryptionType.Rsa2048_OaepSha1_B64:
|
|
|
|
|
provider = WinRTCrypto.AsymmetricKeyAlgorithmProvider.OpenAlgorithm(AsymmetricAlgorithm.RsaOaepSha1);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
throw new ArgumentException("EncryptionType unavailable.");
|
2017-04-20 07:06:11 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var cryptoKey = provider.ImportKeyPair(privateKey, CryptographicPrivateKeyBlobType.Pkcs8RawPrivateKeyInfo);
|
|
|
|
|
var decryptedBytes = WinRTCrypto.CryptographicEngine.Decrypt(cryptoKey, encyptedValue.CipherTextBytes);
|
|
|
|
|
return decryptedBytes;
|
2016-05-02 09:52:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 06:16:09 +03:00
|
|
|
|
private string ComputeMac(byte[] ctBytes, byte[] ivBytes, byte[] macKey)
|
2016-12-11 06:05:52 +03:00
|
|
|
|
{
|
2017-04-20 06:16:09 +03:00
|
|
|
|
if(macKey == null)
|
2016-12-11 06:05:52 +03:00
|
|
|
|
{
|
2017-04-20 06:16:09 +03:00
|
|
|
|
throw new ArgumentNullException(nameof(macKey));
|
2016-12-11 06:05:52 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(ctBytes == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(ctBytes));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(ivBytes == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(ivBytes));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var algorithm = WinRTCrypto.MacAlgorithmProvider.OpenAlgorithm(MacAlgorithm.HmacSha256);
|
2017-04-20 06:16:09 +03:00
|
|
|
|
var hasher = algorithm.CreateHash(macKey);
|
2016-12-11 06:05:52 +03:00
|
|
|
|
hasher.Append(ivBytes.Concat(ctBytes).ToArray());
|
|
|
|
|
var mac = hasher.GetValueAndReset();
|
|
|
|
|
return Convert.ToBase64String(mac);
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-22 21:36:31 +03:00
|
|
|
|
public SymmetricCryptoKey MakeKeyFromPassword(string password, string salt)
|
2016-05-02 09:52:09 +03:00
|
|
|
|
{
|
|
|
|
|
if(password == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(password));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(salt == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(salt));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var passwordBytes = Encoding.UTF8.GetBytes(password);
|
|
|
|
|
var saltBytes = Encoding.UTF8.GetBytes(salt);
|
|
|
|
|
|
2017-04-20 06:16:09 +03:00
|
|
|
|
var keyBytes = _keyDerivationService.DeriveKey(passwordBytes, saltBytes, 5000);
|
2017-04-22 21:36:31 +03:00
|
|
|
|
return new SymmetricCryptoKey(keyBytes);
|
2016-05-02 09:52:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string MakeKeyFromPasswordBase64(string password, string salt)
|
|
|
|
|
{
|
|
|
|
|
var key = MakeKeyFromPassword(password, salt);
|
2017-04-20 06:16:09 +03:00
|
|
|
|
return Convert.ToBase64String(key.Key);
|
2016-05-02 09:52:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-22 21:36:31 +03:00
|
|
|
|
public byte[] HashPassword(SymmetricCryptoKey key, string password)
|
2016-05-02 09:52:09 +03:00
|
|
|
|
{
|
|
|
|
|
if(key == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(Key));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(password == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(password));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var passwordBytes = Encoding.UTF8.GetBytes(password);
|
2017-04-20 06:16:09 +03:00
|
|
|
|
var hash = _keyDerivationService.DeriveKey(key.Key, passwordBytes, 1);
|
2016-08-02 03:23:46 +03:00
|
|
|
|
return hash;
|
2016-05-02 09:52:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-22 21:36:31 +03:00
|
|
|
|
public string HashPasswordBase64(SymmetricCryptoKey key, string password)
|
2016-05-02 09:52:09 +03:00
|
|
|
|
{
|
|
|
|
|
var hash = HashPassword(key, password);
|
|
|
|
|
return Convert.ToBase64String(hash);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|