Releases: pythongssapi/python-gssapi
Releases · pythongssapi/python-gssapi
v1.1.0: Nick
Changelog
Changelog items may be marked LL or HL to denote that they affect the low-level (gssapi.raw
) or high-level (gssapi
) APIs, respectively.
Bugfixes
- Fix compilation on Cython 0.22+
- Actually use any given acceptor credentials when accepting a security context
Features
- Add support for
add_cred_with_password
andacquire_cred_with_password
(accessible with thepassword='pass'
argument to theCredentials
constructor
andCredentials.acquire
) -- #5 - Support Mac OS X compilation against GSS.framework
- LL Add support for the DCE and IOV MIC extensions -- #6
- Add support for RFC 6680 (Naming Extensions) - #4
- LL When
xyz(None)
would be a valid call, allowxyz()
to mean the same thing -- #29 - LL Allow for mutating input credentials in
add_cred
(instead of returning a new set) -- #18
Documentation
- Document specific GSSAPI errors instead of just
GSSError
, when such information is available -- #11 - Fix
verify_mic
documentation
v1.0.0: Jay
The first version. Implements all of RFC 2744, as well as RFC 5588, the credentials import-export extension, the credentials store extension, and the Service4User extension.