-
Notifications
You must be signed in to change notification settings - Fork 96
Break non-crypto dependencies #74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
30fae8e
bce557d
95666b7
47a3635
bf564c7
ebbc5f7
de0a41b
ed16ca7
9b90f2e
d808771
03c60de
4c1fdb5
e23737c
fa30c33
2b725ef
9afb2e9
120d571
1264c2a
b478bb6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -365,19 +365,19 @@ mbedtls_ecp_keypair; | |
* same; they must not be used until the function finally | ||
* returns 0. | ||
* | ||
* This only applies to functions whose documentation | ||
* mentions they may return #MBEDTLS_ERR_ECP_IN_PROGRESS (or | ||
* #MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS for functions in the | ||
* SSL module). For functions that accept a "restart context" | ||
* argument, passing NULL disables restart and makes the | ||
* function equivalent to the function with the same name | ||
* This only applies to functions whose documentation mentions | ||
* they may return #MBEDTLS_ERR_ECP_IN_PROGRESS (or | ||
* `MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS` for functions in the | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Minor: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The commit is only to remove the dependency in the ecp module. A later commit that removes SSL options from config.h will take care to update other references. |
||
* Mbed TLS SSL module). For functions that accept a "restart | ||
* context" argument, passing NULL disables restart and makes | ||
* the function equivalent to the function with the same name | ||
* with \c _restartable removed. For functions in the ECDH | ||
* module, restart is disabled unless the function accepts | ||
* an "ECDH context" argument and | ||
* mbedtls_ecdh_enable_restart() was previously called on | ||
* that context. For function in the SSL module, restart is | ||
* only enabled for specific sides and key exchanges | ||
* (currently only for clients and ECDHE-ECDSA). | ||
* module, restart is disabled unless the function accepts an | ||
* "ECDH context" argument and mbedtls_ecdh_enable_restart() | ||
* was previously called on that context. For function in the | ||
* Mbed TLS SSL module, restart is only enabled for specific | ||
* sides and key exchanges (currently only for clients and | ||
* ECDHE-ECDSA). | ||
* | ||
* \param max_ops Maximum number of basic operations done in a row. | ||
* Default: 0 (unlimited). | ||
|
Uh oh!
There was an error while loading. Please reload this page.