Skip to main content
https://badge.fury.io/gh/pythongssapi%2Fpython-gssapi.svg https://badge.fury.io/py/gssapi.svg

Python-GSSAPI provides both low-level and high level wrappers around the GSSAPI C libraries. While it focuses on the Kerberos mechanism, it should also be useable with other GSSAPI mechanisms.

Documentation can be found at https://pythongssapi.github.io/python-gssapi/.

Requirements

Basic

  • A working implementation of GSSAPI (such as from MIT Kerberos) which supports delegation and includes header files

  • a C compiler (such as GCC)

  • Python 3.9+ (older releases support older versions, but are unsupported)

  • the decorator python package

Compiling from Scratch

To compile from scratch, you will need Cython (see [pyproject.toml](pyproject.toml) for the version) which is automatically installed by pip in an isolated build virtual environment.

For Running the Tests

  • the k5test package

To install test dependencies using pip:

$ pip install -r test-requirements.txt # Optional, for running test suite

Installation

Easy Way

$ pip install gssapi

From the Git Repo

After being sure to install all the requirements,

$ git clone https://github.com/pythongssapi/python-gssapi.git
$ pip install .

Tests

The tests for for Python-GSSAPI live in gssapi.tests. In order to run the tests, you must have an MIT Kerberos installation (including the KDC). The tests create a self-contained Kerberos setup, so running the tests will not interfere with any existing Kerberos installations.

Structure

Python-GSSAPI is composed of two parts: a low-level C-style API which thinly wraps the underlying RFC 2744 methods, and a high-level, Pythonic API (which is itself a wrapper around the low-level API). Examples may be found in the examples directory.

Low-Level API

The low-level API lives in gssapi.raw. The methods contained therein are designed to match closely with the original GSSAPI C methods. All relevant methods and classes may be imported directly from gssapi.raw. Extension methods will only be imported if they are present. The low-level API follows the given format:

  • Names match the RFC 2744 specification, with the gssapi_ prefix removed

  • Parameters which use C int constants as enums have enum.IntEnum classes defined, and thus may be passed either the enum members or integers

  • In cases where a specific constant is passed in the C API to represent a default value, None should be passed instead

  • In cases where non-integer constants would be used in the API (i.e. OIDs), enum-like objects have been defined containing named references to values specified in RFC 2744.

  • Major and minor error codes are returned by raising gssapi.raw.GSSError. The major error codes have exceptions defined in in gssapi.raw.exceptions to make it easier to catch specific errors or categories of errors.

  • All other relevant output values are returned via named tuples.

High-Level API

The high-level API lives directly under gssapi. The classes contained in each file are designed to provide a more Pythonic, Object-Oriented view of GSSAPI. The exceptions from the low-level API, plus several additional exceptions, live in gssapi.exceptions. The rest of the classes may be imported directly from gssapi. Only classes are exported by gssapi – all functions are methods of classes in the high-level API.

Please note that QoP is not supported in the high-level API, since it has been deprecated.

Extensions

In addition to RFC 2743/2744, Python-GSSAPI also has support for:

  • RFC 4178 (GSS-API Negotiation Mechanism)

  • RFC 5587 (Extended GSS Mechanism Inquiry APIs)

  • RFC 5588 (GSS-API Extension for Storing Delegated Credentials)

  • RFC 5801 (GSS-API SASL Extensions)

  • (Additional) Credential Store Extension

  • Services4User

  • Credentials import-export

  • RFC 6680 (GSS-API Naming Extensions)

  • DCE and IOV MIC extensions

  • acquire_cred_with_password and add_cred_with_password

  • GGF Extensions

  • Kerberos specific extensions

Python Free-Threading (PEP 779)

This library supports Python Free-Threading and will build free-threading-compatible extension files if installed under a free-threading interpreter. Python 3.14t is tested in CI and a wheel will be created for 3.14t+. Python 3.13t is not officially tested or supported but may or may not work. There is limited testing for free-threading in this library and it does not aim to be thread safe out of the box. If you encounter any issues or problems with this scenario please raise an issue and we can look at possible options to fix this.

The Team

(GitHub usernames in parentheses)

  • Jordan Borean (@jborean93) - current maintainer and developer

  • Simo Sorce (@simo5) - developer

  • Robbie Harwood (@frozencemetery) - author emeritus

  • Solly Ross (@directxman12) - author emeritus

  • Hugh Cole-Baker (@sigmaris) - author emeritus

Get Involved

We welcome new contributions in the form of Issues and Pull Requests on Github. If you would like to join our discussions, you can find us on libera.chat IRC, channel #python-gssapi.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gssapi-1.12.0.tar.gz (95.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

gssapi-1.12.0-cp315-cp315t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.15tWindows x86-64

gssapi-1.12.0-cp315-cp315t-win32.whl (1.8 MB view details)

Uploaded CPython 3.15tWindows x86

gssapi-1.12.0-cp315-cp315t-macosx_11_0_arm64.whl (769.1 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

gssapi-1.12.0-cp315-cp315t-macosx_10_15_x86_64.whl (751.0 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

gssapi-1.12.0-cp314-cp314t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

gssapi-1.12.0-cp314-cp314t-win32.whl (1.8 MB view details)

Uploaded CPython 3.14tWindows x86

gssapi-1.12.0-cp314-cp314t-macosx_11_0_arm64.whl (779.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

gssapi-1.12.0-cp314-cp314t-macosx_10_15_x86_64.whl (761.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

gssapi-1.12.0-cp311-abi3-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11+Windows x86-64

gssapi-1.12.0-cp311-abi3-win32.whl (1.6 MB view details)

Uploaded CPython 3.11+Windows x86

gssapi-1.12.0-cp311-abi3-macosx_11_0_arm64.whl (676.8 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

gssapi-1.12.0-cp311-abi3-macosx_10_9_x86_64.whl (644.2 kB view details)

Uploaded CPython 3.11+macOS 10.9+ x86-64

gssapi-1.12.0-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

gssapi-1.12.0-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

gssapi-1.12.0-cp310-cp310-macosx_11_0_arm64.whl (730.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

gssapi-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl (725.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

gssapi-1.12.0-cp39-cp39-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86-64

gssapi-1.12.0-cp39-cp39-win32.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86

gssapi-1.12.0-cp39-cp39-macosx_11_0_arm64.whl (737.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

gssapi-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl (731.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file gssapi-1.12.0.tar.gz.

File metadata

  • Download URL: gssapi-1.12.0.tar.gz
  • Upload date:
  • Size: 95.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for gssapi-1.12.0.tar.gz
Algorithm Hash digest
SHA256 0b48f17296f869db89221c3bde463fdff35152a4cb99ae4aaa42b0b64333fc6c
MD5 a139f609d073d0eb6734e68248b6832a
BLAKE2b-256 6bfb9492eb37b5786369b7e96fff2cf4040713acb33b96124813e058cbbd4356

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0.tar.gz:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.12.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for gssapi-1.12.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 4f0811ba2df74bb600697d5af5db7e5aecf9361f8081998d7c2cee3f5e59c752
MD5 54cf5e7a7cdd5a110d1a5dbed0d182f6
BLAKE2b-256 f3ebd4cc099a600fe07ccf91af52458c910894c87283f259ec8d3a0c63f33bf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp315-cp315t-win_amd64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp315-cp315t-win32.whl.

File metadata

  • Download URL: gssapi-1.12.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for gssapi-1.12.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 8b6c966d70025e044aa1f67d4e333854aa5e426ac2a75f201f627ede6aacf0c9
MD5 c4f1a940135fc658fff2161bc7748cf0
BLAKE2b-256 63a7370654dd4c0f2400358bd4e68523814932a80503f210dd1426f09fc9d382

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp315-cp315t-win32.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.12.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e2bf66d0d02e6cafadc9dc944998a9c2edcd553138b9c68b57236bcc827bd15
MD5 9198725522ee771cab2cf1d8bcf48dbc
BLAKE2b-256 479178d098549eea3358e1e8e6a76f254be2e9ac3c6e7117c81edf880e51b9ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.12.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9d98f9ad2327ab20d7985d0fd413c02c0cce7459ed226952fd078b29c6a2a40b
MD5 f3d5b6ae985931aa507ccf2983c0e752
BLAKE2b-256 12e278321a281815e6e3078f8738539739c6a9f606e2f09f568711ab4bff21cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.12.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for gssapi-1.12.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 59c601325789d9aa34f14117f534f224031de455174ac01b64b7bbbdff6d2bd0
MD5 8d8d1e2d8a312e09b2d904bb44d8d78f
BLAKE2b-256 f1a95006c8dce263b01708d024c25680b0648b294d6e36f1d56c2d797b52c3cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp314-cp314t-win_amd64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: gssapi-1.12.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for gssapi-1.12.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 89d747b301317e9ab2d5776eafa9bb5e1b37a736bf295eb789aeb57752f23fb0
MD5 9292de50e54dad3cdc91e4a3055a0a81
BLAKE2b-256 cc21bf546a0862c0e829beabd8fe337ed0255b2d434575e60ffc61182d8663b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp314-cp314t-win32.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.12.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ada649cbca078a8c2fb398257c93e66f4807a988d6ad36f8bb12744fb21aaf5a
MD5 0e0bdfbe5a5ec692f9d1fe8492cab47f
BLAKE2b-256 7917ec335f3c3ed42b81c343ef11b71212a4378635029433a7fe23801d526779

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.12.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 82fa870b03277494d351912d2f48f55bd305fdc28953dd9c5fd3d82f07bf00c9
MD5 4ee2ecda82e038289b9c62f71c6d3653
BLAKE2b-256 db5b22d5bb1b687b1c8c2a12b708299ab041d2b9bc2ae30bbaa527989d94bb4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.12.0-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for gssapi-1.12.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 a953e21f80169bd55fef0d0bf050109ce93d055931558c3b353e8c4e7751f08e
MD5 8ef116e6c34fbd0ad6ae918411881f23
BLAKE2b-256 3e4eae027a2e7578a879f476ab0728f32cef86580df05ca56ca1e1918ecb61e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp311-abi3-win_amd64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp311-abi3-win32.whl.

File metadata

  • Download URL: gssapi-1.12.0-cp311-abi3-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for gssapi-1.12.0-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 06f3363a5d201cf328e4964e491c37b0777636d67ef19549bbb96792b7293dca
MD5 ea9ad7ba181c9743fc77b0dae103108b
BLAKE2b-256 353dd5f0c7b04c57a1701e664cc50eea88d1c91b876ea7f4b8505aab990210bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp311-abi3-win32.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.12.0-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca29e1d31a6edd78d33ec37d0cf7bfde7e259b376051f742816c08380e23e973
MD5 23427ccd13a2ca65567418f99e75c12a
BLAKE2b-256 f33d14bb64c34a1cb1ad6dd86dfdb2d50f2dd9719799edaf5c0a624efbe79a3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp311-abi3-macosx_11_0_arm64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp311-abi3-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.12.0-cp311-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fbcf4213d72bde6f836dc96511d7410c4c95e0470ccc690bc7f85e402c9ff5ec
MD5 27b8a692fe8ef8a76d8ac60495707415
BLAKE2b-256 4bc5abbccc9f3c7efaef68efbb8f2dbcebb610dc6631fd1108556dd2a9d967b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp311-abi3-macosx_10_9_x86_64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.12.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for gssapi-1.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2616ba4498e7b735f7ad96567c08efed8f2ac9b48484f9a0671973883a986d77
MD5 50691ba8f56a6c26e874d9792b8317eb
BLAKE2b-256 90022874af33498ed512c95723f2feb249bd8c530ba77f83d23bc214231d7661

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: gssapi-1.12.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for gssapi-1.12.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9e076c12310b203e02d302ff86586d0b80a9302ec7718713cfe24ead9df0d748
MD5 c60473e81ac34c6360cff38eefb0cc16
BLAKE2b-256 e68ade28d4bd230de5d0a28a2b608d92bed7f115a5d15da98396b5b0b6387a81

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp310-cp310-win32.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d335e7a89bf95cc1c797b38fc1ea9f0828d97843df63b23cdf806a5199ba9e2
MD5 d41ae786fa338aa0ff868073b66f1131
BLAKE2b-256 c8d433ff434803cb2f28b50b146bd38e8eae896e763866dc6b07dec0b1ec3c9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 28cac97bc3bd0833802ba428a6f0a6e41255f0b21cea9df64553c261879dbf01
MD5 f558b03c23bbe84a3751c705264332d1
BLAKE2b-256 efac5112863fdd5c2bd66d90623f49715859b26506738172646556b43216bfa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.12.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for gssapi-1.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c909b97f68757a0fd15785bc4e32b958f5433397a03a5d75cbf51a8e788869ed
MD5 f201c6411aacf5fe7eb4a432dbfa4b2a
BLAKE2b-256 c932f85c7a3689435fa58f56c964956ac306ff43eb3ef62cb9e90ee81ff750c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp39-cp39-win_amd64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: gssapi-1.12.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for gssapi-1.12.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3cc29e17d5f0eab27a7e7803b56706c712e3c88c37ec5d64b6a5bb2a49d0f582
MD5 447d1fa9e6ee34be1df71e421bb044c8
BLAKE2b-256 45304f73a3502a232527e8a2a0c7fe27dfe383e44a50866ac4cb6240cdebe394

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp39-cp39-win32.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.12.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a8004c2ef9bd072d682772de8be89fe4b25c80a6ba16cbaf822b6838d10181b
MD5 69f5a572668ec3cce8a21d16759ca4d4
BLAKE2b-256 b0df5e2151e81b9d00dc2e63e1a9171ee01eeaa243a9e12742b28d4a1127ec47

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gssapi-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 892ac549291a4f96a9600b3a822dc91df6f081592f7171bf134076b3f0d95fd3
MD5 bc6554699bf5b178f3ca51d93e8d05cb
BLAKE2b-256 7dabc079cf2e7c94239c4fc7bc2d0082f298238009f81f783f81a11821631673

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: ci.yml on pythongssapi/python-gssapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.12.0 This release

21 files

1.11.1

17 files

1.10.1

25 files

1.10.0

25 files

1.9.0

25 files

1.8.3

24 files

1.8.2

20 files

1.8.1

16 files

1.7.3

19 files

1.7.2

19 files

1.7.0

9 files

1.6.14

9 files

1.6.13

3 files

1.6.12

5 files

1.6.11

5 files

1.6.10

5 files

1.6.9

4 files

1.6.8

4 files

1.6.6

2 files

1.6.5

4 files

1.6.2

4 files

1.6.1

4 files

1.6.0

1 file

1.5.1

1 file

1.5.0

1 file

1.4.1

1 file

1.3.0

1 file

1.2.0

1 file

1.1.4

1 file

1.1.3

1 file

1.1.1

1 file

1.1.0

1 file

1.0.0

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page