Skip to content

Commit bab5c52

Browse files
DirectXMan12frozencemetery
authored andcommitted
Low-level: Implement DCE Extensions
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
1 parent 37a1551 commit bab5c52

File tree

5 files changed

+705
-1
lines changed

5 files changed

+705
-1
lines changed

gssapi/raw/__init__.py

+6
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,9 @@
4343
from gssapi.raw.ext_password_add import * # noqa
4444
except ImportError:
4545
pass
46+
47+
# optional DCE (IOV/AEAD) support
48+
try:
49+
from gssapi.raw.ext_dce import * # noqa
50+
except ImportError:
51+
pass

0 commit comments

Comments
 (0)