Hi, expert
I want to encrypt table data, but cannot encrypt .
cqlsh:killr_video> CREATE TABLE encryption_test (d int PRIMARY KEY,passwod text) WITH COMPRESSION = { ... 'class': 'EncryptingLZ4Compressor', ... 'cipher_algorithm' : 'DESede/CBC/PKCS5Padding', ... 'secret_key_strength' : 112, ... 'system_key_file' : 'system_key' };
cqlsh:killr_video> INSERT INTO encryption_test(d,passwod) values(1,'aaa'); cqlsh:killr_video> select * from encryption_test ; d | passwod ---+--------- 1 | aaa
ー>I was expecting passwod to be encrypted, but it is not.
How can I encrypt table data ?
Am I wrong in my understanding of table encryption that can be achieved with Datastax?