Skip to content

Commit

Permalink
Low-level: Implement DCE Extensions
Browse files Browse the repository at this point in the history
The GSSAPI DCE Extensions include support for wrapping and unwrapping
IOV and AEAD messages (this allows for DCE RPC and other SSPI
functionality).

Part of #6
  • Loading branch information
DirectXMan12 committed Feb 13, 2015
1 parent f749981 commit 6b2e6a2
Show file tree
Hide file tree
Showing 5 changed files with 713 additions and 1 deletion.
6 changes: 6 additions & 0 deletions gssapi/raw/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,9 @@
from gssapi.raw.ext_password_add import * # noqa
except ImportError:
pass

# optional DCE (IOV/AEAD) support
try:
from gssapi.raw.ext_dce import * # noqa
except ImportError:
pass

0 comments on commit 6b2e6a2

Please sign in to comment.