| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.146.1.el8_10.x86_64 #1 SMP Tue Jul 21 15:46:30 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /lib64/python3.6/site-packages/gssapi/ |
Upload File : |
"""High-Level GSSAPI Bindings
The high-level API contains three main classes, which represent
the primary abstractions that GSSAPI provides:
Name (see gssapi.names)
Credentials (see gssapi.creds)
SecurityContext (see gssapi.sec_contexts)
Additionally, a number of helper classes shared with the low-level API
exist as well:
Enums (see gssapi.raw.types) --
NameType, RequirementFlag, AddressType, MechType
IntEnumFlagSet (see gssapi.raw.types)
OID (see gssapi.raw.oids)
Note:
Classes in the high-level API inherit from the corresponding
classes in the low-level API, and thus may be passed in to
low-level API functions.
"""
from gssapi.raw.types import NameType, RequirementFlag, AddressType # noqa
from gssapi.raw.types import MechType, IntEnumFlagSet # noqa
from gssapi.raw.oids import OID # noqa
from gssapi.creds import Credentials # noqa
from gssapi.names import Name # noqa
from gssapi.sec_contexts import SecurityContext # noqa
from gssapi._utils import set_encoding # noqa