Skip to content
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

Export keying material support #725

Merged
merged 6 commits into from
Nov 30, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added additional comments to test
  • Loading branch information
kelbyludwig authored and reaperhulk committed Nov 30, 2017
commit 95ec8c1817b8b41dddb9214cf053f78888c02330
1 change: 1 addition & 0 deletions tests/test_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -3387,6 +3387,7 @@ def test_memory_connect(self):
assert cekm == sekm
assert len(sekm) == 32

# Export key material for other uses with additional context.
cekmc = client_conn.export_keying_material(b'LABEL', 32, b'CONTEXT')
sekmc = server_conn.export_keying_material(b'LABEL', 32, b'CONTEXT')
assert cekmc is not None
Expand Down