forked from mobius-software-ltd/pyton3-dtls
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added methods getting the curves supported by the runtime openSSL lib
* dtls/openssl.py: - Added class _EllipticCurve() for easy handling of the builtin curves - Added wrapper get_elliptic_curves() - which uses _EllipticCurve() - Added EC_get_builtin_curves(), EC_KEY_new_by_curve_name() and EC_KEY_free() - Added OBJ_nid2sn() for translating numeric ids to names * dtls/util.py: Added _EC_KEY() derived from _Rsrc() with own free/del method
- Loading branch information
Showing
3 changed files
with
127 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
2017-03-17 Björn Freise <[email protected]> | ||
|
||
Added methods getting the curves supported by the runtime openSSL lib | ||
|
||
* dtls/openssl.py: | ||
- Added class _EllipticCurve() for easy handling of the builtin curves | ||
- Added wrapper get_elliptic_curves() - which uses _EllipticCurve() | ||
- Added EC_get_builtin_curves(), EC_KEY_new_by_curve_name() and EC_KEY_free() | ||
- Added OBJ_nid2sn() for translating numeric ids to names | ||
* dtls/util.py: Added _EC_KEY() derived from _Rsrc() with own free/del method | ||
|
||
2017-03-17 Björn Freise <[email protected]> | ||
|
||
Added methods for setting and getting the curves used during negotiation and encryption | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters