Skip to content
Snippets Groups Projects
Commit d4b8455d authored by Taras's avatar Taras
Browse files

Add retrievePrivateKeyWithPassword to bcryptManager

parent 300ed276
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,6 @@ internal object BCryptManager {
private const val iterations = 14
private const val saltLength = 16
fun generateBcryptPrivateKeyWithPassword(
userName: String,
password: String
......@@ -18,10 +17,14 @@ internal object BCryptManager {
return GeneratePrivateKeyResult(privateKey, salt.toString(), iterations)
}
fun retrievePrivateKeyWithPassword(
password: String,
salt: String,
iterations: Int
): ByteArray = BCrypt.withDefaults().hash(iterations, salt.toByteArray(), password.toByteArray())
private fun String.sha256(): String = MessageDigest
.getInstance("SHA-256")
.digest(this.toByteArray())
.fold("") { str, it -> str + "%02x".format(it) }
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment