Skip to content

Commit 837b377

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 3283980 commit 837b377

File tree

5 files changed

+706
-1
lines changed

5 files changed

+706
-1
lines changed

gssapi/raw/__init__.py

Lines changed: 6 additions & 0 deletions
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)