aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/CryptoHandler.kt
blob: 03396f2eeb1aaee75bffe840f228eb6414caa629 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package space.anity

import java.io.*
import java.security.*
import javax.crypto.*
import javax.crypto.spec.*

class CryptoHandler @Throws(NoSuchPaddingException::class, NoSuchAlgorithmException::class)
internal constructor(private val secretKey: SecretKey, cipher: String) {
    private val cipher: Cipher = Cipher.getInstance(cipher)

    @Throws(InvalidKeyException::class, IOException::class)
    internal fun encrypt(content: String, fileName: String): ByteArray {
        cipher.init(Cipher.ENCRYPT_MODE, secretKey)
        val iv: ByteArray = cipher.iv

        FileOutputStream(fileName).use { fileOut ->
            CipherOutputStream(fileOut, cipher).use { cipherOut ->
                cipherOut.write(content.toByteArray())
            }
        }

        return iv
    }

    @Throws(InvalidAlgorithmParameterException::class, InvalidKeyException::class, IOException::class)
    internal fun decrypt(fileName: String, iv: ByteArray): String {
        var content = ""

        FileInputStream(fileName).use { fileIn ->
            cipher.init(Cipher.DECRYPT_MODE, secretKey, IvParameterSpec(iv))

            CipherInputStream(fileIn, cipher).use { cipherIn ->
                InputStreamReader(cipherIn).use { inputReader ->
                    BufferedReader(inputReader).use { reader ->
                        val sb = StringBuilder()
                        var line: String? = reader.readLine()
                        while (line != null) {
                            sb.append(line)
                            line = reader.readLine()
                        }
                        content = sb.toString()
                    }
                }
            }
        }

        return content
    }
}