mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.0' into cassandra-2.1
Conflicts: CHANGES.txt
This commit is contained in:
commit
ceddff58f3
|
|
@ -36,6 +36,13 @@ Merged from 2.0:
|
|||
* Restore expiring->deleted (cell) compaction optimization (CASSANDRA-6844)
|
||||
* Fix CompactionManager.needsCleanup (CASSANDRA-6845)
|
||||
* Correctly compare BooleanType values other than 0 and 1 (CASSANDRA-6779)
|
||||
* Read message id as string from earlier versions (CASSANDRA-6840)
|
||||
* Properly use the Paxos consistency for (non-protocol) batch (CASSANDRA-6837)
|
||||
* add extra SSL cipher suites (CASSANDRA-6613)
|
||||
* fix nodetool getsstables for blob PK (CASSANDRA-6803)
|
||||
|
||||
|
||||
2.0.6
|
||||
* Avoid race-prone second "scrub" of system keyspace (CASSANDRA-6797)
|
||||
* Pool CqlRecordWriter clients by inetaddress rather than Range
|
||||
(CASSANDRA-6665)
|
||||
|
|
|
|||
|
|
@ -676,6 +676,7 @@ request_scheduler: org.apache.cassandra.scheduler.NoScheduler
|
|||
# Default settings are TLS v1, RSA 1024-bit keys (it is imperative that
|
||||
# users generate their own keys) TLS_RSA_WITH_AES_128_CBC_SHA as the cipher
|
||||
# suite for authentication, key exchange and encryption of the actual data transfers.
|
||||
# Use the DHE/ECDHE ciphers if running in FIPS 140 compliant mode.
|
||||
# NOTE: No custom encryption options are enabled at the moment
|
||||
# The available internode options are : all, none, dc, rack
|
||||
#
|
||||
|
|
@ -696,7 +697,7 @@ server_encryption_options:
|
|||
# protocol: TLS
|
||||
# algorithm: SunX509
|
||||
# store_type: JKS
|
||||
# cipher_suites: [TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA]
|
||||
# cipher_suites: [TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA,TLS_DHE_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_RSA_WITH_AES_256_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA]
|
||||
# require_client_auth: false
|
||||
|
||||
# enable or disable client/server encryption.
|
||||
|
|
@ -712,7 +713,7 @@ client_encryption_options:
|
|||
# protocol: TLS
|
||||
# algorithm: SunX509
|
||||
# store_type: JKS
|
||||
# cipher_suites: [TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA]
|
||||
# cipher_suites: [TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA,TLS_DHE_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_RSA_WITH_AES_256_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA]
|
||||
|
||||
# internode_compression controls whether traffic between nodes is
|
||||
# compressed.
|
||||
|
|
|
|||
|
|
@ -23,7 +23,11 @@ public abstract class EncryptionOptions
|
|||
public String keystore_password = "cassandra";
|
||||
public String truststore = "conf/.truststore";
|
||||
public String truststore_password = "cassandra";
|
||||
public String[] cipher_suites = {"TLS_RSA_WITH_AES_128_CBC_SHA", "TLS_RSA_WITH_AES_256_CBC_SHA"};
|
||||
public String[] cipher_suites = {
|
||||
"TLS_RSA_WITH_AES_128_CBC_SHA", "TLS_RSA_WITH_AES_256_CBC_SHA",
|
||||
"TLS_DHE_RSA_WITH_AES_128_CBC_SHA", "TLS_DHE_RSA_WITH_AES_256_CBC_SHA",
|
||||
"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA", "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA"
|
||||
};
|
||||
public String protocol = "TLS";
|
||||
public String algorithm = "SunX509";
|
||||
public String store_type = "JKS";
|
||||
|
|
|
|||
Loading…
Reference in New Issue