EncryptedBinaryColumnType
class EncryptedBinaryColumnType(encryptor: Encryptor, length: Int) : ColumnWithTransform<ByteArray, ByteArray>
Binary column for storing encrypted binary strings of a specific length, using the provided encryptor.
Samples
import org.jetbrains.exposed.sql.Column
import org.jetbrains.exposed.sql.Table
fun main() {
//sampleStart
registerColumn(name, EncryptedBinaryColumnType(encryptor, cipherByteLength))
//sampleEnd
}