EncryptedVarCharColumnType
class EncryptedVarCharColumnType(encryptor: Encryptor, colLength: Int) : ColumnWithTransform<String, String>
Character column for storing encrypted strings, using the provided encryptor, with the specified maximum colLength.
Samples
import org.jetbrains.exposed.sql.Column
import org.jetbrains.exposed.sql.Table
fun main() {
//sampleStart
registerColumn(name, EncryptedVarCharColumnType(encryptor, cipherTextLength))
//sampleEnd
}