Revert "Änderung der Bezugsliste Daten werden nun befült Anzeige scheitert noch"

This reverts commit a689d48aa6.
This commit is contained in:
ja
2021-12-15 11:48:15 +01:00
parent cb7be47bb2
commit bf0fa83e39
3 changed files with 29 additions and 32 deletions

View File

@@ -44,9 +44,9 @@ Public Class VERAG_VARIABLES
Else
Dim Argon As Argon2d = New Argon2d(Encoding.UTF8.GetBytes(VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(password)))
Argon.Salt = salt
Argon.DegreeOfParallelism = 52
Argon.DegreeOfParallelism = 48
Argon.Iterations = nIterations
Argon.MemorySize = ((((nIterations * 2 - nIterations / 0.25 * 3.78) / 0.08) + 1 * 256) / 2)
Argon.MemorySize = ((((nIterations * 3 - nIterations / 1.95 * 2.28) / 0.08) + 1 * 256) / 2)
Return Await Argon.GetBytesAsync(nHash)
End If
End Function