Skip to content

Commit

Permalink
Fix cypher suite name in docs (#2142) (#2146)
Browse files Browse the repository at this point in the history
Closes #2141. The AES128 and AES256 need a dash in their name, so
AES-128 and AES-256 is what the code expect.
  • Loading branch information
tsg authored and Steffen Siering committed Aug 1, 2016
1 parent 1efe230 commit 852875b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions libbeat/docs/outputconfig.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ Here is a list of allowed cipher suites and their meanings.
* 3DES:
Cipher suites using triple DES

* AES128/256:
* AES-128/256:
Cipher suites using AES with 128/256-bit keys.

* CBC:
Expand Down Expand Up @@ -977,19 +977,19 @@ The following cipher suites are available:

* RSA-RC4-128-SHA (disabled by default - RC4 not recommended)
* RSA-3DES-CBC3-SHA
* RSA-AES128-CBC-SHA
* RSA-AES256-CBC-SHA
* RSA-AES-128-CBC-SHA
* RSA-AES-256-CBC-SHA
* ECDHE-ECDSA-RC4-128-SHA (disabled by default - RC4 not recommended)
* ECDHE-ECDSA-AES128-CBC-SHA
* ECDHE-ECDSA-AES256-CBC-SHA
* ECDHE-ECDSA-AES-128-CBC-SHA
* ECDHE-ECDSA-AES-256-CBC-SHA
* ECDHE-RSA-RC4-128-SHA (disabled by default- RC4 not recommended)
* ECDHE-RSA-3DES-CBC3-SHA
* ECDHE-RSA-AES128-CBC-SHA
* ECDHE-RSA-AES256-CBC-SHA
* ECDHE-RSA-AES128-GCM-SHA256 (TLS 1.2 only)
* ECDHE-ECDSA-AES128-GCM-SHA256 (TLS 1.2 only)
* ECDHE-RSA-AES256-GCM-SHA384 (TLS 1.2 only)
* ECDHE-ECDSA-AES256-GCM-SHA384 (TLS 1.2 only)
* ECDHE-RSA-AES-128-CBC-SHA
* ECDHE-RSA-AES-256-CBC-SHA
* ECDHE-RSA-AES-128-GCM-SHA256 (TLS 1.2 only)
* ECDHE-ECDSA-AES-128-GCM-SHA256 (TLS 1.2 only)
* ECDHE-RSA-AES-256-GCM-SHA384 (TLS 1.2 only)
* ECDHE-ECDSA-AES-256-GCM-SHA384 (TLS 1.2 only)

===== curve_types

Expand Down

0 comments on commit 852875b

Please sign in to comment.