Skip to main content

Python GSSAPI Wrapper

Project description

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

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.

Project details


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.10.1.tar.gz (94.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.10.1-cp314-cp314-win_amd64.whl (826.9 kB view details)

Uploaded CPython 3.14Windows x86-64

gssapi-1.10.1-cp314-cp314-win32.whl (740.2 kB view details)

Uploaded CPython 3.14Windows x86

gssapi-1.10.1-cp314-cp314-macosx_11_0_arm64.whl (685.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

gssapi-1.10.1-cp314-cp314-macosx_10_13_x86_64.whl (657.4 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

gssapi-1.10.1-cp313-cp313-win_amd64.whl (808.1 kB view details)

Uploaded CPython 3.13Windows x86-64

gssapi-1.10.1-cp313-cp313-win32.whl (719.6 kB view details)

Uploaded CPython 3.13Windows x86

gssapi-1.10.1-cp313-cp313-macosx_11_0_arm64.whl (682.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

gssapi-1.10.1-cp313-cp313-macosx_10_13_x86_64.whl (658.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

gssapi-1.10.1-cp312-cp312-win_amd64.whl (826.9 kB view details)

Uploaded CPython 3.12Windows x86-64

gssapi-1.10.1-cp312-cp312-win32.whl (732.1 kB view details)

Uploaded CPython 3.12Windows x86

gssapi-1.10.1-cp312-cp312-macosx_11_0_arm64.whl (696.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

gssapi-1.10.1-cp312-cp312-macosx_10_13_x86_64.whl (672.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

gssapi-1.10.1-cp311-cp311-win_amd64.whl (823.5 kB view details)

Uploaded CPython 3.11Windows x86-64

gssapi-1.10.1-cp311-cp311-win32.whl (734.7 kB view details)

Uploaded CPython 3.11Windows x86

gssapi-1.10.1-cp311-cp311-macosx_11_0_arm64.whl (696.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

gssapi-1.10.1-cp311-cp311-macosx_10_9_x86_64.whl (675.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

gssapi-1.10.1-cp310-cp310-win_amd64.whl (820.2 kB view details)

Uploaded CPython 3.10Windows x86-64

gssapi-1.10.1-cp310-cp310-win32.whl (735.6 kB view details)

Uploaded CPython 3.10Windows x86

gssapi-1.10.1-cp310-cp310-macosx_11_0_arm64.whl (690.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

gssapi-1.10.1-cp310-cp310-macosx_10_9_x86_64.whl (669.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

gssapi-1.10.1-cp39-cp39-win_amd64.whl (822.5 kB view details)

Uploaded CPython 3.9Windows x86-64

gssapi-1.10.1-cp39-cp39-win32.whl (737.2 kB view details)

Uploaded CPython 3.9Windows x86

gssapi-1.10.1-cp39-cp39-macosx_11_0_arm64.whl (694.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

gssapi-1.10.1-cp39-cp39-macosx_10_9_x86_64.whl (672.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: gssapi-1.10.1.tar.gz
  • Upload date:
  • Size: 94.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gssapi-1.10.1.tar.gz
Algorithm Hash digest
SHA256 7b54335dc9a3c55d564624fb6e25fcf9cfc0b80296a5c51e9c7cf9781c7d295b
MD5 f266f7088d2980e703c8d30c6a29a63a
BLAKE2b-256 b7bf95eed332e3911e2b113ceef5e6b0da807b22e45dbf897d8371e83b0a4958

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1.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.10.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.10.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 826.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gssapi-1.10.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8f311cec5eabe0ce417908bcf50f60afa91a5b455884794eb02eb35a41d410c7
MD5 7a0e98cc08eda839cc42d9b9d817ed62
BLAKE2b-256 4cfc838a46df536111602d6582f8e8efecccaaf828b690c6305a2ef276c71e5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp314-cp314-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.10.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: gssapi-1.10.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 740.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gssapi-1.10.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2ef6e30c37676fbb2f635467e560c9a5e7b3f49ee9536ecb363939efa81c82bc
MD5 ed900eb8200af9831d3c41e31a5b62d4
BLAKE2b-256 29e4812ef20519f020122b5207600fda2906a3d4fcc6536c8aeb764012c28470

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp314-cp314-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.10.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.10.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86758d03906e10cb7feeedf26b5ead6661e844c54ef09d5e7de8e5ffb1154932
MD5 26d718a3d5c873f38aadb8c9a8682e8e
BLAKE2b-256 553a414e9cfa3c4f14682e40a5d61b8181936c78abf4aff0f1a91e9adaa20b5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp314-cp314-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.10.1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.10.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a4d2aa439bcd08cd524a6e0c566137850e681b0fed62480aa765c097344387d7
MD5 57b301799c056800366c40511d9630dc
BLAKE2b-256 5b606c6bba3a06bc9e5c7fd7a8b4337c392b3074cbbce11525c94e8b7af856e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp314-cp314-macosx_10_13_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.10.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.10.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 808.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gssapi-1.10.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d821d37afd61c326ba729850c9836d84e5d38ad42acec21784fb22dd467345f4
MD5 65d91a8d7008ac1139336969b615fbb7
BLAKE2b-256 16b43c1c5dad78b193626a035661196dc3bed4d1544dd57e609fb6cc0e8838e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp313-cp313-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.10.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: gssapi-1.10.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 719.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gssapi-1.10.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 37c2abb85e76d9e4bef967a752354aa6a365bb965eb18067f1f012aad0f7a446
MD5 1da895f95dbb5a0a8db93e5d9905f6ac
BLAKE2b-256 8b24615e0544dbf8bcb002d7f15bff44af502be99ed4ed2a64190779f47b0bc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp313-cp313-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.10.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.10.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df86f1dcc2a1c19c1771565661d05dd09cb1ce7ff2c3be261b3b5312458969f3
MD5 e260fc0568ef870dd24bd50fb1c0cf53
BLAKE2b-256 15099def6b103752da8e9d51a4258ffe2d4a97191e1067a1581324480b752471

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp313-cp313-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.10.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.10.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 952c900ced1cafe7e7938052e24d01d4ba48f234a0ca7347c854c6d96f94ae26
MD5 a1f23e1a68a9d0d1ff27b27b179a1ae6
BLAKE2b-256 b2a939b5eefe1f7881d3021925c0a3183f1aa1a64d1cfe3ff6a5ab3253ddc2ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp313-cp313-macosx_10_13_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.10.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.10.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 826.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gssapi-1.10.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f0d5e5e6031e879d4050e0373cf854f5082ca234127b6553026a29c64ddf64ed
MD5 45792a8e40205f44e1e47246473b5889
BLAKE2b-256 353499ebc21b95765491af00d92b8332dba9ae5d357707ba81f05ba537acc4f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp312-cp312-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.10.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: gssapi-1.10.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 732.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gssapi-1.10.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ed40213beec30115302bac3849134fbbfd5b0fdb60d8e4f2d9027cd44765f42b
MD5 fdc262eeb2126b9071ffa73f84168d8d
BLAKE2b-256 20814f70ad5ee531800fecbddd38870c16922d18cb9b5d4be2e1f4354a160f9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp312-cp312-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.10.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.10.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ec74a5e70241655b79c7de7dc750c58dae80482947973e019c67c8d53311981
MD5 18e5da2ea077b2dc1b23ac3269e2f899
BLAKE2b-256 a8426f499af7de07d1a3e7ad6af789a4a9b097d13b0342629bb152171bfee45f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp312-cp312-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.10.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.10.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b5c08ae5b5fa3faae1ad5bf9d4821a27da6974df0bf994066bf8e437ff101429
MD5 562b44acba4acd935c6895c89e81ba03
BLAKE2b-256 fa6fb2dd133e3accf4be9106258331735b5d56959c018fb4b1952f70b35a3055

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp312-cp312-macosx_10_13_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.10.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.10.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 823.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gssapi-1.10.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 93166ed5d3ce53af721c2a9a115ffa645900f4b71c4810a18bff10f0a9843d0e
MD5 4e1acd63b144477fdd058c33ed140393
BLAKE2b-256 ff75881178aac0bf010ca2608dd6b870e9b7c106ebee3203ddde202f45f934b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp311-cp311-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.10.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: gssapi-1.10.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 734.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gssapi-1.10.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 048736351b013290081472b2e523251246bc96d7ea74c97189d2af31f7d20bd6
MD5 d46f032e91bff2839d997ae4fec25232
BLAKE2b-256 bfdae7691856ebd762a09d4410fd6dcdb65aa7b09c258b70bf14a04d07ac69e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp311-cp311-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.10.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.10.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0be7195c96968df44f3cd2b79bbfa2ca3729d4bd91374947e93fde827bdab37f
MD5 91ea5f8220feedb525cc261b536f8e62
BLAKE2b-256 b5baca520b74838edc98cdc3182821539a29da3cd2f00d94b70f860107d84a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp311-cp311-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.10.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.10.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44be38aef1b26270dc23c43d8f124f13cf839cadcba63f5d011793eca2ec95f2
MD5 62372cbe1936b8ac6b640c48c4fb257e
BLAKE2b-256 26e4d9d088d3dd7ab4009589af9d774d39e13de85709842210afa846efb02eb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-cp311-cp311-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.10.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.10.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 820.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gssapi-1.10.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 77e92a1bdc4c72af4f1aa850787038741bd38e3fa6c52defee50125509539ffe
MD5 fc652e89a0c307f1cbd3f9cf301e1dce
BLAKE2b-256 daf53d99ff06a12141cd02a751a5934a90c298b971fae0568965f55664567934

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-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.10.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: gssapi-1.10.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 735.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gssapi-1.10.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a589980c2c8c7ec7537b26b3d8d3becf26daf6f84a9534c54b3376220a9e82b5
MD5 8bb54e52ea2e362d713a8b85a7749eaa
BLAKE2b-256 f8119779cbf496cff411bcce75379f7d7dc51d7831c93aa880d98e0b0e7be72f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-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.10.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.10.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d75edd60f3105b362e4841ff86f358a9c6b9849e1327ea527b6a17b86e459207
MD5 d51d3149a9dcc5a7aa5ddeb34ec0f661
BLAKE2b-256 1255b948e8f104c99ef669ae939442651e9817e4584e9b056ff488138b6cd676

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-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.10.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.10.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1456b60bbb999c7d2bf323c1ca9ee077dc6a59368737401c302c64bf0dd8a119
MD5 39c745987b918264a718037bb98d5143
BLAKE2b-256 dec20e25252f96f4213a666a32fdbfd5a287f115aec8bdb8a2e14af3ca392b7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-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.10.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.10.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 822.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gssapi-1.10.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fea5fa50b36502665d6d2f2479c198307adf21afbc523017cf115e5c4769258a
MD5 04e9013ddbb909edd90ee106819d2b4c
BLAKE2b-256 794eac06778f2ec6c12c8423b64fe0626939ad829407bc32a8214f0ad23675b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-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.10.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: gssapi-1.10.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 737.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gssapi-1.10.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2a71b089589ff949ffd557c795ac0c3f80eaa0cb56062c39b1363cf4af413e38
MD5 73f77782b5711c434f490c305ee0f5f8
BLAKE2b-256 7f5e4107ef2226e58b10a279f93fc8c24d489633b111bb0b236d98bb260e065f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-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.10.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.10.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1622e0a03ec736456b84ddd8b54808f90dca3cf3528d1ff4203f1e8f014a293
MD5 a76fc3be8daf275131146bdf139b2648
BLAKE2b-256 ee262594e11b25e6731d3bce20111a1e940b7e3b43efb745d76fdedfa0cfced0

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-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.10.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.10.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a2b539dc10c46968a558a92f7ca49a53f1215b9c16fc25a55980824a9123c241
MD5 ca5413168926b21d73a3780da1c3c756
BLAKE2b-256 2e6ac28218ed3995cb38feac9142026994fd54e83a6ddd270d30435476c3b80e

See more details on using hashes here.

Provenance

The following attestation bundles were made for gssapi-1.10.1-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.

Supported by

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