From 9c0c819dce3ddde66d752677f4ef110f8a252e85 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 10 Oct 2016 22:09:58 -0400 Subject: [PATCH] remove unused instance of Random --- src/App/Services/CryptoService.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/App/Services/CryptoService.cs b/src/App/Services/CryptoService.cs index eba187941..f71f741d8 100644 --- a/src/App/Services/CryptoService.cs +++ b/src/App/Services/CryptoService.cs @@ -15,7 +15,6 @@ namespace Bit.App.Services private const string PreviousKeyKey = "previousKey"; private const int InitializationVectorSize = 16; - private readonly Random _random = new Random(); private readonly ISecureStorageService _secureStorage; private readonly IKeyDerivationService _keyDerivationService; private byte[] _key;