Skip to content

Commit c9b59f9

Browse files
authored
Remove "Instance" access
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 040f40c commit c9b59f9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

HashifyNet/Algorithms/Argon2id/IsopohImplementation/Argon2/Argon2.InitFillFinal.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ private void Transformer_TransformBytes(IBlockTransformer transformer, byte[] va
4545
private SecureArray<byte> InitialHash()
4646
{
4747
var ret = SecureArray<byte>.Best(64, this.config.SecureArrayCall);
48-
var bhash = HashFactory<IBlake2B, IBlake2BConfig>.Instance.Create(new Blake2BConfig()
48+
var bhash = HashFactory<IBlake2B, IBlake2BConfig>.Create(new Blake2BConfig()
4949
{
5050
HashSizeInBits = PrehashDigestLength * 8
5151
});
@@ -387,4 +387,5 @@ private sealed class FillState
387387
public AutoResetEvent Are { get; }
388388
}
389389
}
390-
}
390+
391+
}

0 commit comments

Comments
 (0)