aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/CryptoHandler.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/CryptoHandler.kt')
-rw-r--r--src/main/kotlin/CryptoHandler.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/kotlin/CryptoHandler.kt b/src/main/kotlin/CryptoHandler.kt
index 145f3e6..e3f33df 100644
--- a/src/main/kotlin/CryptoHandler.kt
+++ b/src/main/kotlin/CryptoHandler.kt
@@ -32,12 +32,12 @@ internal constructor(private val secretKey: SecretKey, cipher: String) {
cipher.init(Cipher.DECRYPT_MODE, secretKey, IvParameterSpec(iv))
CipherInputStream(fileIn, cipher).use { cipherIn ->
- InputStreamReader(cipherIn).use { inputReader ->
+ InputStreamReader(cipherIn, Charsets.UTF_8).use { inputReader ->
BufferedReader(inputReader).use { reader ->
val sb = StringBuilder()
var line: String? = reader.readLine()
while (line != null) {
- sb.append(line)
+ sb.append(line + "\n")
line = reader.readLine()
}
content = sb.toString()