aboutsummaryrefslogtreecommitdiff
path: root/PORTING.md
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2015-09-03 11:48:12 -0400
committerAdam Langley <agl@google.com>2015-09-03 18:37:14 +0000
commit809829ee9fad6dc96e7768cb51f775fddd22bd93 (patch)
tree62be1449811cd20cbeb59a73b9505ff670522379 /PORTING.md
parent65703b45c47bb71cfcb972edea00d82218cb0f9d (diff)
downloadboringssl-809829ee9fad6dc96e7768cb51f775fddd22bd93.zip
boringssl-809829ee9fad6dc96e7768cb51f775fddd22bd93.tar.gz
boringssl-809829ee9fad6dc96e7768cb51f775fddd22bd93.tar.bz2
Fix a typo in PORTING.md and mention one more renego restriction.
Change-Id: I59b30882178222000dd90b051856bb2816eeb9fd Reviewed-on: https://boringssl-review.googlesource.com/5789 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'PORTING.md')
-rw-r--r--PORTING.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/PORTING.md b/PORTING.md
index 757db65..70b67cc 100644
--- a/PORTING.md
+++ b/PORTING.md
@@ -115,6 +115,9 @@ Things which do not work:
* There is no support for renegotiation in DTLS.
+* There is no support for initiating renegotiation; `SSL_renegotiate` always
+ fails and `SSL_set_state` does nothing.
+
* Interleaving application data with the new handshake is forbidden.
* If a HelloRequest is received while `SSL_write` has unsent application data,
@@ -123,7 +126,7 @@ Things which do not work:
## Optional BoringSSL-specific simplifications
-BoringSSL makes some changes to OpenSSL which simplify the API but remain remain
+BoringSSL makes some changes to OpenSSL which simplify the API but remain
compatible with OpenSSL consumers. In general, consult the BoringSSL
documentation for any functions in new BoringSSL-only code.