Skip to content

Commit 6b2e6a2

Browse files
committed
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 f749981 commit 6b2e6a2

File tree

5 files changed

+713
-1
lines changed

5 files changed

+713
-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)