How to use Cassandra with TDE (Transparent Data Encryption)

旧城冷巷雨未停 提交于 2019-12-02 03:25:34

问题


I'm trying to figure out how to use Cassandra with TDE (Transparent Data Encryption) and in which DataStax edition TDE is supported.

I've been going through DataStax documentation and from what I see, TDE is supported only in DataStax Enterprise Edition. Is this correct?

Also, TDE is included on table/column level and is specified when creating new tables, not as some configuration?

Just want to confirm my assumptions.

Thanks in advance


回答1:


Your assumptions are correct.

Transparent Data Encryption is only supported in DataStax Enterprise (since version 3.2).

Transparent Data Encryption is specified when you create/alter a table

ALTER TABLE users WITH compression = { 
  'sstable_compression' : 'Encryptor',
  'cipher_algorithm' : 'AES/ECB/PKCS5Padding',
  'secret_key_strength' : 128,
  'chunk_length_kb' : 1 
  };

http://docs.datastax.com/en/datastax_enterprise/4.7/datastax_enterprise/sec/secTDEtblcrypt.html contains the latest documentation about Transparent Data Encryption in DSE 4.7



来源:https://stackoverflow.com/questions/32584253/how-to-use-cassandra-with-tde-transparent-data-encryption

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!