Fix typemismatch

This commit is contained in:
Ryan Brandenburg 2019-02-14 15:13:02 -08:00 committed by Artak
parent 3b1a0e4755
commit 4932a4bad5
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ namespace Microsoft.AspNetCore.Identity.Test
using (var alg256 = SHA256.Create()) using (var alg256 = SHA256.Create())
using (var alg384 = SHA384.Create()) using (var alg384 = SHA384.Create())
{ {
string hash; byte[] hash;
if(isSha256) if(isSha256)
{ {
hash = alg256.ComputeHash(respStream); hash = alg256.ComputeHash(respStream);