Skip to content

Commit

Permalink
docs: temporarily remove boringcrypto references
Browse files Browse the repository at this point in the history
This commit removes boringcrypto references until #64 is
resolved.
  • Loading branch information
rfratto committed Mar 28, 2024
1 parent ea77e2b commit 92f9886
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/sources/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,12 @@ You should run Flow mode when:
[vault]: ./reference/components/remote.vault/
-->

<!--
### BoringCrypto
[BoringCrypto][] is an **EXPERIMENTAL** feature for building {{< param "PRODUCT_NAME" >}}
binaries and images with BoringCrypto enabled. Builds and Docker images for Linux arm64/amd64 are made available.
[BoringCrypto]: https://pkg.go.dev/crypto/internal/boring
-->
30 changes: 30 additions & 0 deletions docs/sources/reference/config-blocks/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ The `cipher_suites` argument determines what cipher suites to use.
If you don't provide cipher suite, a default list is used.
The set of cipher suites specified may be from the following:

<!--
| Cipher | Allowed in `boringcrypto` builds |
| ----------------------------------------------- | -------------------------------- |
| `TLS_RSA_WITH_AES_128_CBC_SHA` | no |
Expand All @@ -107,17 +108,46 @@ The set of cipher suites specified may be from the following:
| `TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384` | yes |
| `TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256` | no |
| `TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256` | no |
-->
| Cipher |
| ----------------------------------------------- |
| `TLS_RSA_WITH_AES_128_CBC_SHA` |
| `TLS_RSA_WITH_AES_256_CBC_SHA` |
| `TLS_RSA_WITH_AES_128_GCM_SHA256` |
| `TLS_RSA_WITH_AES_256_GCM_SHA384` |
| `TLS_AES_128_GCM_SHA256` |
| `TLS_AES_256_GCM_SHA384` |
| `TLS_CHACHA20_POLY1305_SHA256` |
| `TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA` |
| `TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA` |
| `TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA` |
| `TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA` |
| `TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256` |
| `TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384` |
| `TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256` |
| `TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384` |
| `TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256` |
| `TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256` |


The `curve_preferences` argument determines the set of elliptic curves to prefer during a handshake in preference order.
If not provided, a default list is used.
The set of elliptic curves specified may be from the following:

<!--
| Curve | Allowed in `boringcrypto` builds |
| ----------- | -------------------------------- |
| `CurveP256` | yes |
| `CurveP384` | yes |
| `CurveP521` | yes |
| `X25519` | no |
-->
| Curve |
| ----------- |
| `CurveP256` |
| `CurveP384` |
| `CurveP521` |
| `X25519` |

The `min_version` and `max_version` arguments determine the oldest and newest TLS version that's acceptable from clients.
If you don't provide the min and max TLS version, a default value is used.
Expand Down

0 comments on commit 92f9886

Please sign in to comment.