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.7+ (older releases support older versions, but are unsupported)

  • the decorator python package

Compiling from Scratch

To compile from scratch, you will need Cython >= 0.29.29 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.8.3.tar.gz (94.2 kB view details)

Uploaded Source

Built Distributions

gssapi-1.8.3-cp312-cp312-win_amd64.whl (866.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

gssapi-1.8.3-cp312-cp312-win32.whl (768.8 kB view details)

Uploaded CPython 3.12 Windows x86

gssapi-1.8.3-cp312-cp312-macosx_11_0_arm64.whl (685.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

gssapi-1.8.3-cp312-cp312-macosx_10_9_x86_64.whl (705.7 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

gssapi-1.8.3-cp311-cp311-win_amd64.whl (871.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

gssapi-1.8.3-cp311-cp311-win32.whl (772.1 kB view details)

Uploaded CPython 3.11 Windows x86

gssapi-1.8.3-cp311-cp311-macosx_11_0_arm64.whl (687.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

gssapi-1.8.3-cp311-cp311-macosx_10_9_x86_64.whl (711.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

gssapi-1.8.3-cp310-cp310-win_amd64.whl (867.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

gssapi-1.8.3-cp310-cp310-win32.whl (771.7 kB view details)

Uploaded CPython 3.10 Windows x86

gssapi-1.8.3-cp310-cp310-macosx_11_0_arm64.whl (684.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

gssapi-1.8.3-cp310-cp310-macosx_10_9_x86_64.whl (708.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

gssapi-1.8.3-cp39-cp39-win_amd64.whl (871.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

gssapi-1.8.3-cp39-cp39-win32.whl (774.4 kB view details)

Uploaded CPython 3.9 Windows x86

gssapi-1.8.3-cp39-cp39-macosx_11_0_arm64.whl (688.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

gssapi-1.8.3-cp39-cp39-macosx_10_9_x86_64.whl (712.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

gssapi-1.8.3-cp38-cp38-win_amd64.whl (873.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

gssapi-1.8.3-cp38-cp38-win32.whl (776.5 kB view details)

Uploaded CPython 3.8 Windows x86

gssapi-1.8.3-cp38-cp38-macosx_11_0_arm64.whl (694.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

gssapi-1.8.3-cp38-cp38-macosx_10_9_x86_64.whl (718.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

gssapi-1.8.3-cp37-cp37m-win_amd64.whl (878.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

gssapi-1.8.3-cp37-cp37m-win32.whl (775.9 kB view details)

Uploaded CPython 3.7m Windows x86

gssapi-1.8.3-cp37-cp37m-macosx_10_9_x86_64.whl (716.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: gssapi-1.8.3.tar.gz
  • Upload date:
  • Size: 94.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for gssapi-1.8.3.tar.gz
Algorithm Hash digest
SHA256 aa3c8d0b1526f52559552bb2c9d2d6be013d76a8e5db00b39a1db5727e93b0b0
MD5 9dc9a2eafcddb7cb21f95f04d6f977d5
BLAKE2b-256 13e7dd88180cfcf243be62308707cc2f5dae4c726c68f30b9367931c794fda16

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.8.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 866.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for gssapi-1.8.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5731c5b40ecc3116cfe7fb7e1d1e128583ec8b3df1e68bf8cd12073160793acd
MD5 545aa57f007ec95198783a7e7e7f4770
BLAKE2b-256 21be6dc4dba46049e9b8a78a6022c8b9b8acdce5b3e4d8d117b2590c6485ff4b

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: gssapi-1.8.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 768.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for gssapi-1.8.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 338db18612e3e6ed64e92b6d849242a535fdc98b365f21122992fb8cae737617
MD5 7db40a3e6790d16f4b954117eb8a7101
BLAKE2b-256 5ba1bd70c11f7b93aba830d8ade56924b036ca39390470f2aeadd0fb381bdf13

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.8.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37f1a8046d695f2c9b8d640a6e385780d3945c0741571ed6fee6f94c31e431dc
MD5 550ee160dbe1c1e2a48bf37576d57650
BLAKE2b-256 9c58b1415f5fa88db2448ccad7fc8536ab36622d064d5570b8fd40e548d2be6c

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.8.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19c373b3ba63ce19cd3163aa1495635e3d01b0de6cc4ff1126095eded1df6e01
MD5 452f95c8fb9a709c6a45a5c6181887e4
BLAKE2b-256 4ca6cba65106d456342dde6fb3001a2db727ef6e16ac1df1f07ac3c0347a5dde

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.8.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 871.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for gssapi-1.8.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8fdb1ff130cee49bc865ec1624dee8cf445cd6c6e93b04bffef2c6f363a60cb9
MD5 8befed3db4af52f5a0fcf02006e353f8
BLAKE2b-256 b6f0b1cc4a4ac8669878bd84fc0cf358d5bfa66773a050f8bfb3c2bf4d68a373

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: gssapi-1.8.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 772.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for gssapi-1.8.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 edc8ef3a9e397dbe18bb6016f8e2209969677b534316d20bb139da2865a38efe
MD5 45caf3b930dc03a8e5786e5dd79d283e
BLAKE2b-256 9dbb95474f6627c7b4619f56321b25c0462228b503136df194eaced46fc2d192

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.8.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca6ceb17fc15eda2a69f2e8c6cf10d11e2edb32832255e5d4c65b21b6db4680a
MD5 8a2d95b3f9d0ba6d33f56bbcfd7026e9
BLAKE2b-256 0ac43b62db3b869e6a655f1d95f1ffe8a05777df32ed2b786da0ba963d863d45

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.8.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b03d6b30f1fcd66d9a688b45a97e302e4dd3f1386d5c333442731aec73cdb409
MD5 639807b6ddeb28aad77d8797c759dfe4
BLAKE2b-256 60b095578131e7826e200a84bb1c4af9d75fd7f2f402be142c7f16f74bbf9dd2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: gssapi-1.8.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 867.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for gssapi-1.8.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b031c0f186ab4275186da385b2c7470dd47c9b27522cb3b753757c9ac4bebf11
MD5 7ed496f378cc53facddbbd7a971300cf
BLAKE2b-256 86780576459f99b985ccfcd9864d4eff98f22b300e31a2246afaa5e7e58f70dd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: gssapi-1.8.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 771.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for gssapi-1.8.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3a3f63105f39c4af29ffc8f7b6542053d87fe9d63010c689dd9a9f5571facb8e
MD5 6a25569edfab24ea609b91d2dd4e6841
BLAKE2b-256 6f81f4d31e1b0fdf1644030feae2340280a6dcb1be87779e2c96b64c4bb0a900

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for gssapi-1.8.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d57d67547e18f4e44a688bfb20abbf176d1b8df547da2b31c3f2df03cfdc269
MD5 be8f6c58c57cb9b00af98ce0cbf63817
BLAKE2b-256 d6d6af2397cb5ab9489fd181e0203abe31c338e9ea2cc6a865880edce4a2a125

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for gssapi-1.8.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e4a83e9b275fe69b5d40be6d5479889866b80333a12c51a9243f2712d4f0554
MD5 1f265638db50f4c9178cfd994d303900
BLAKE2b-256 d898dc84ff813aac87a307ad90191617d8af801023c5da6d3f02f7faab3d4304

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: gssapi-1.8.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 871.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for gssapi-1.8.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8fb8ee70458f47b51ed881a6881f30b187c987c02af16cc0fff0079255d4d465
MD5 860a055dadfa2fd2327cfe9b4d33ce7c
BLAKE2b-256 a94274436dc8eea4b7909a2b9d9d6c978be5825bb3dc081d08721df08dd2cdc0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: gssapi-1.8.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 774.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for gssapi-1.8.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 465c6788f2ac6ef7c738394ba8fde1ede6004e5721766f386add63891d8c90af
MD5 320d9d42a96b910328c4c79afb58cb8b
BLAKE2b-256 f659cb21141abefc72319ab599af2be02343836af75c042b52fbc457275b2c87

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for gssapi-1.8.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee74b9211c977b9181ff4652d886d7712c9a221560752a35393b58e5ea07887a
MD5 d26abe37927af2f4efe1a39f4b3c5b6b
BLAKE2b-256 f157a750efc7db3a01fd437419366db27c09e4e749d65b213ca3778cedc6b3c4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for gssapi-1.8.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e40efc88ccefefd6142f8c47b8af498731938958b808bad49990442a91f45160
MD5 0de6f2cfe748cd3ea4e19d080701afe1
BLAKE2b-256 3873320146be5ec8490fd17c7b649ae1a901ffe88db6152f6ceae8ed5af65d41

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.8.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 873.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for gssapi-1.8.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5b4bf84d0a6d7779a4bf11dacfd3db57ae02dd53562e2aeadac4219a68eaee07
MD5 a65589def8892e9d2cf5f6dc36476651
BLAKE2b-256 8c386c4b411d255af31c2cd24cba287df6d9f380b905c2338d9eea1eda313e9a

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: gssapi-1.8.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 776.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for gssapi-1.8.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 791e44f7bea602b8e3da1ec56fbdb383b8ee3326fdeb736f904c2aa9af13a67d
MD5 44d0a9898c44ea916a9b7e92db74b4c3
BLAKE2b-256 50915d7ea93393ef41a0a4679ef2f83f8ba1c2bb4436eb51762f9efe6abd1efe

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gssapi-1.8.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5b28237afc0668046934792756dd4b6b7e957b0d95a608d02f296734a2819ad
MD5 d98a880d0d7c855c7b25ac35f9447f6b
BLAKE2b-256 8e956c4f2ab578a228289a9589f6a73571dbe6a1127e8dba22ea39262fd7c410

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.8.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d91fe6e2a5c89b32102ea8e374b8ae13b9031d43d7b55f3abc1f194ddce820d
MD5 5447ecd58158c6865c556c424a3ce323
BLAKE2b-256 dd6247c5932d5e61cdcf256cffec790ec04560d6fa11031bcb0a20271796d4e2

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: gssapi-1.8.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 878.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for gssapi-1.8.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4d9ed83f2064cda60aad90e6840ae282096801b2c814b8cbd390bf0df4635aab
MD5 83b2bc576732f46b0ce5cb9599c28682
BLAKE2b-256 5f17827950d829e7dda30d3caee816ba6575ea7567d52449bca26d439342c8b8

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: gssapi-1.8.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 775.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for gssapi-1.8.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e2bb081f2db2111377effe7d40ba23f9a87359b9d2f4881552b731e9da88b36b
MD5 2f48c939a6350feaa25db19f61ebec8d
BLAKE2b-256 338c8a83421aa13fa351a08e9de8a42edc1580e6b001eee1bfd2cf3707e65971

See more details on using hashes here.

Provenance

File details

Details for the file gssapi-1.8.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gssapi-1.8.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e556878da197ad115a566d36e46a8082d0079731d9c24d1ace795132d725ff2a
MD5 cc138c36890eabc4b04d627d8b73d36c
BLAKE2b-256 2996a1d4b20567909c76780bf7ee15796b8c422cad719a6fa15c6068c291110c

See more details on using hashes here.

Provenance

Supported by

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