Merge pull request #4 from rex4539/typos

Fix typo
This commit is contained in:
Kevin Gorham 2021-01-13 22:10:13 -05:00 committed by GitHub
commit 208f60301d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ object Pbkdf2Sha512 {
acc.apply { this[i] = c.toByte() }
}
val hLen = 20.0
// note: dropped length check because its redundant, given the size of an int in kotlin
// note: dropped length check because it's redundant, given the size of an int in kotlin
val l = ceil(dkLenBytes / hLen).toInt()
for (i in 1..l) {
F(pBytes, s, c, i).let { Tn ->