Skip to main content

Python interface to the Kerberos administration interface (kadm5)

Project description

Rust and Python bindings for the Kerberos administration interface (kadm5)

This repository contains both a work-in-progress safe, idiomatic Rust bindings for libkadm5, the library to administrate a Kerberos realm that supports the Kerberos administration interface (mainly Heimdal and MIT Kerberos 5), and the underlying "unsafe" bindings generated by bindgen in kadmin-sys.

It also contains a Python API to those bindings.

Kerberos implementations compatibility

These libraries will only compile against MIT krb5. However, they will allow you to communicate with an MIT krb5 KDC as well as a Heimdal KDC. In fact, these libraries are tested against both!

kadmin-sys

Crates.io Version docs.rs

These are the raw bindings to libkadm5. This crate offers two features, client and server. You must choose one of them depending on how your application is going to interact with the KDC. By default, client is enabled.

  • client: links against kadm5clnt. Use this is you plan to remotely access the KDC, using kadmind's GSS-API RPC interface, like the CLI tool kadmin does.
  • server: links against kadm5srv. Use this is you plan to directly edit the KDB from the machine where the KDC is running, like the CLI tool kadmin.local does.

kadmin

Crates.io Version docs.rs

This is a safe, idiomatic Rust interface to libkadm5. This crate offers two features, client and local. They are similar to how kadmin-sys behaves. You should only enable one of them.

With the client feature:

use kadmin::{KAdmin, KAdminImpl};

let princ = "user/admin@EXAMPLE.ORG";
let password = "vErYsEcUrE";

let kadmin = KAdmin::builder().with_password(&princ, &password).unwrap();

dbg!("{}", kadmin.list_principals("*").unwrap());

With the local feature:

use kadmin::{KAdmin, KAdminImpl};

let kadmin = KAdmin::builder().with_local().unwrap();

dbg!("{}", kadmin.list_principals("*").unwrap());

About thread safety

As far as I can tell, libkadm5 APIs are not thread safe. As such, the types provided by this crate are neither Send nor Sync. You must not use those with threads. You can either create a KAdmin instance per thread, or use the kadmin::sync::KAdmin interface that spawns a thread and sends the various commands to it. The API is not exactly the same as the non-thread-safe one, but should be close enough that switching between one or the other is easy enough. Read more about this in the documentation of the crate.

python-kadmin-rs

PyPI - Version Read the Docs

These are Python bindings to the above Rust library, using the kadmin::sync interface to ensure thread safety. It provides two Python modules: kadmin for remote operations, and kadmin_local for local operations.

With kadmin:

import kadmin

princ = "user/admin@EXAMPLE.ORG"
password = "vErYsEcUrE"
kadm = kadmin.KAdmin.with_password(princ, password)
print(kadm.list_principals("*"))

With kadmin_local:

import kadmin

kadm = kadmin.KAdmin.with_local()
print(kadm.list_principals("*"))

License

Licensed under the MIT License.

Contributing

Just open a PR.

### Releasing

  1. Go to Actions > Create release PR
  2. Click "Run workflow" and select what you need to release and input the new version.
  3. Wait for the PR to be opened and the CI to pass
  4. Merge the PR.
  5. Go to Releases
  6. Edit the created release.
  7. Click "Generate release notes"
  8. Publish

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

python_kadmin_rs-0.6.3.tar.gz (89.4 kB view details)

Uploaded Source

Built Distributions

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

python_kadmin_rs-0.6.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

python_kadmin_rs-0.6.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

python_kadmin_rs-0.6.3-pp311-pypy311_pp73-macosx_14_0_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 14.0+ x86-64

python_kadmin_rs-0.6.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

python_kadmin_rs-0.6.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

python_kadmin_rs-0.6.3-pp310-pypy310_pp73-macosx_14_0_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 14.0+ x86-64

python_kadmin_rs-0.6.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

python_kadmin_rs-0.6.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

python_kadmin_rs-0.6.3-pp39-pypy39_pp73-macosx_14_0_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 14.0+ x86-64

python_kadmin_rs-0.6.3-cp313-cp313t-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

python_kadmin_rs-0.6.3-cp313-cp313t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

python_kadmin_rs-0.6.3-cp313-cp313t-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

python_kadmin_rs-0.6.3-cp313-cp313t-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

python_kadmin_rs-0.6.3-cp313-cp313t-macosx_14_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13tmacOS 14.0+ x86-64

python_kadmin_rs-0.6.3-cp313-cp313t-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13tmacOS 14.0+ ARM64

python_kadmin_rs-0.6.3-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_kadmin_rs-0.6.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

python_kadmin_rs-0.6.3-cp313-cp313-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

python_kadmin_rs-0.6.3-cp313-cp313-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

python_kadmin_rs-0.6.3-cp313-cp313-macosx_14_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

python_kadmin_rs-0.6.3-cp313-cp313-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

python_kadmin_rs-0.6.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

python_kadmin_rs-0.6.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

python_kadmin_rs-0.6.3-cp312-cp312-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

python_kadmin_rs-0.6.3-cp312-cp312-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

python_kadmin_rs-0.6.3-cp312-cp312-macosx_14_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

python_kadmin_rs-0.6.3-cp312-cp312-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

python_kadmin_rs-0.6.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

python_kadmin_rs-0.6.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

python_kadmin_rs-0.6.3-cp311-cp311-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

python_kadmin_rs-0.6.3-cp311-cp311-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

python_kadmin_rs-0.6.3-cp311-cp311-macosx_14_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

python_kadmin_rs-0.6.3-cp311-cp311-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

python_kadmin_rs-0.6.3-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

python_kadmin_rs-0.6.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

python_kadmin_rs-0.6.3-cp310-cp310-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

python_kadmin_rs-0.6.3-cp310-cp310-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

python_kadmin_rs-0.6.3-cp310-cp310-macosx_14_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

python_kadmin_rs-0.6.3-cp310-cp310-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

python_kadmin_rs-0.6.3-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

python_kadmin_rs-0.6.3-cp39-cp39-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

python_kadmin_rs-0.6.3-cp39-cp39-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

python_kadmin_rs-0.6.3-cp39-cp39-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

python_kadmin_rs-0.6.3-cp39-cp39-macosx_14_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

python_kadmin_rs-0.6.3-cp39-cp39-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

Details for the file python_kadmin_rs-0.6.3.tar.gz.

File metadata

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

File hashes

Hashes for python_kadmin_rs-0.6.3.tar.gz
Algorithm Hash digest
SHA256 ee66576a598b8a33f62ac77e470543bca21aa6af90033030f1448fc65f073896
MD5 799f1f3a9b321c04c4ff4eaf28c96258
BLAKE2b-256 8ff2cc5996a02557d731c9c038dc9bec5ee6653e662ae3f0a3659f48d1bcd7f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3.tar.gz:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f0789952d939d2b241363465f26b227a97d135c2a129a80aa54d63051b6b9c4
MD5 27ba1ca96ef24f307a8362064e1fbd64
BLAKE2b-256 afcce26714df6629cb55bd73133057f481d2c6488b80a367ee692775386db31f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74152d8ff4bf8524aebb66219866257c6249b5356d2044b790a0dabc76ebb30f
MD5 f151db46771c45617f93c8db1d57204e
BLAKE2b-256 0b486d0fc1aa49616528bd047c149eecb9993e904008213e33d28b67c4a58bca

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-pp311-pypy311_pp73-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-pp311-pypy311_pp73-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 ed15aaa28c5f360876bae21918af20d7f8fd753716d5d532a418c8f2a8b05f4c
MD5 d89424b7cd2f30d9a24e769aa9fa352c
BLAKE2b-256 15d45437f93c79cef1524999e7e65b1e45bca5834c499874dd1534a141c972bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-pp311-pypy311_pp73-macosx_14_0_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 009fdc405fecddd84fea513c805d2137f685b5db52c0bf66ac7b9d9ad942c88d
MD5 e67cfe6246d758691afba8bea8f8b362
BLAKE2b-256 42759b2949810bbf790ded111589bb47ef823ec49ab4b23a2cad02bce6dbaeea

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ddcb00f7907dc4a0fb3393fdcd1169a068560e02689cff8615c3a4a1bc69d97b
MD5 6ce96c84a79918d0f210759799fbad95
BLAKE2b-256 67db91e4ffecf373c89ae77e418abd9edb15418aa352f166f43f1dd288108ed6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-pp310-pypy310_pp73-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-pp310-pypy310_pp73-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 6757315979f2121f8c6036e04993fdfb057b5b50ddc63063c009b637bf2bb1ef
MD5 f0f926341f0429681c45e55e6eb3d552
BLAKE2b-256 afca779d706600cddc44b33728f45f932b03abcb9af4058a1b8925505ab483ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-pp310-pypy310_pp73-macosx_14_0_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95c7aa2c418c2e4a51169d9991edba7cbf1b5a08190e68bd389aae335dee5550
MD5 c4ae1bfc06df8adc8a645505b59e2cd9
BLAKE2b-256 53bb19f5e3b3759b2184ea800188eca36d6f776f15ec735c7f132b765e029da6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28185424dc5ced9c4b1b1271587a7279a4561f85ec897719f05e75be352f2f8d
MD5 6c21ae21d721b96c347352aa2db4cb11
BLAKE2b-256 497d61d619dc32519ab12a38558812a98ba040e04e715ca13a90d89b718df888

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-pp39-pypy39_pp73-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-pp39-pypy39_pp73-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 d33fa178549d3d37f8eae31b4acdb1f1b403c957f80b54631c46ccf41a59b9ba
MD5 4f3941dd2ccdb39e5946afcce5b4884e
BLAKE2b-256 235c59d91a76924f53e772f133ea5f225a8b9906ba6428eb58921a06b8da9e90

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-pp39-pypy39_pp73-macosx_14_0_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4c8f9997ca6a3935ef4d190dff25ae1af5a059fd6cffc6dc6da04954224bdc3
MD5 f1ac7cf764d194124dea655667bb5dc0
BLAKE2b-256 312d4bd02a159b8d06d4b672df90b633727fb4e6ee57b3644b676ed05677e36b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 424b1d16312c5ccc02f39b340291dd3f9197cd06697b00e79fde127a57b3312c
MD5 904fbe8c3c3d4e99770c773d826253b1
BLAKE2b-256 42aef71232566cd6406f0165502d8ce7e780b5e254645fc622d3e03394731f01

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ae00838bc8ae05dfaff6e318168031c21c6e99b4ffcae0858af14269b4de865
MD5 ad0fe5d7cbbe3ed00a3098ffd486b780
BLAKE2b-256 ae4465e11dc89d737a86a43de44411896e5c18809c9da1610fa44ff96d3eacfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp313-cp313t-manylinux_2_28_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 141237de35d2f77ef9b40e164895ba0d8b147f1fe105902163922fe5c7fe30d7
MD5 981abc16a5f351c85addec0396905cce
BLAKE2b-256 af48b276b62e6066b81a8a13cbcdc80b3fecb5e67f4afe7e52e7fc15c8da0444

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp313-cp313t-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp313-cp313t-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 3fac0dd137e2410e3e92cc6fea8b1a4ffabd780292449bb3782c536168d4a2aa
MD5 8b5e3e619bf2c61597f7e2c904922a60
BLAKE2b-256 76b048b53d5bfeb7844b962fcdfa8522406d98a0a9bfe3057e167c1c51bfd22b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp313-cp313t-macosx_14_0_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp313-cp313t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp313-cp313t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 be11431e0576a79aea2a09fc5b10b4dc8d2540039e762e43a88a4db6b6eceb11
MD5 001fd4f4921b97a807fdf3d79d9f102d
BLAKE2b-256 2c7fd115f7ac602901dc1c740956874e0542afabb370839527bf0e3d04d2a503

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp313-cp313t-macosx_14_0_arm64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7d9eb89e21403b6fede3f4f7b46b9081edf7167c6f2909c6fded41bb2c04859
MD5 3a20afb85d5704cec6d4dfc5e5cf4c2f
BLAKE2b-256 00c2ae6009a09e4d14576f1ef095682c9c1c0894412f5a436a9353fe76a6e278

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f13a164061d37749f60486c0d15ac4258b4f6ffc39422a2e5adbeeb561eb1db
MD5 1a5c0ca37d136008f335e8510e94b60d
BLAKE2b-256 f374ff354cb3fbe54fc4eafed8128bfc6a05ad991ffa2371e671288fadbb3bbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df03e56a77393033833b7d0a7f0c03ff55ad30082f5e20ef203e9114e8c0fb2d
MD5 d230e377679d3e2705180401db688366
BLAKE2b-256 6307ff7f9c26cd766fc76330c14b612c69b5780537fd40e6ad294df01b50c2f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0bf952284ec4939da76f0a05d99e81297e94b09bc053b35ad9d317cad648514
MD5 25b891f91c191d0dc3c0f9cd8aa623c5
BLAKE2b-256 f86f23103f5466654efe9d03a1ff684e8803bc3353ec3f2cad9c4748291e9625

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 97be2e11fcf94fdaee2bcb0fe0c28401ba349338d3aaea199608bcd1f62af895
MD5 b2da665aec3cd521a3431c36c2ec4a10
BLAKE2b-256 72c2a03bd85a2dc4f35defcf85e440aebb3f4f2bc95aa4f7b0e0c54759cb3cca

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp313-cp313-macosx_14_0_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9610fd0a5b35d4a00154f386d1b61498dbbbea8476b1d39a6a749947ad1dc045
MD5 f68d6fc8e908e0239dec7f1acee4c866
BLAKE2b-256 55b7498aacedd75e106c562d5496ddd9e02cb0b736c9b47e6b795c7c27034682

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e870e6a644dda34a8503d9ce65e9673af94ab26bac1361db932ce50b9646715
MD5 05c1030cf6b89d0e243a942c197fc61b
BLAKE2b-256 f0a5ff3c33a44b057c07dceccba2e4c2ee936718f6e1c5c35345d974d97116f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20d2ff3359ad6643b1e277ba2f3b4c63e9749bf93e4ac30bb045a8a91d82ed7a
MD5 c0c9c9563cc16d98b2d1565d18a2b319
BLAKE2b-256 9a820b9fcc1f3ca791b572c060bb79b1a0ba688480cd0282c7c40291efaff887

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 87e270a2056d8b982ec3b9e765dfc24a5d1d01cf7fe8ce8f9d5b5d275e5aed52
MD5 2afcae09d08a16c5a9d0a53792afa695
BLAKE2b-256 9aa2e03e3de6ed526b9b846d14970f18e16ec9da87ed99eae5d613d3fc067552

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7dfcf30001e4503bdb83cf486b922502b6175b2dd260e989e724e522d87e348c
MD5 8914132c3840ba367a6e1c9720338156
BLAKE2b-256 e303093b951aea69475354afea8a16ce28e52bad1c712536d5565fc1c77193f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 8175258f24b30abf53ce5219afafcfdead76699e4cc3c7d8bf380757af3ee9a6
MD5 d9f19d3f4404db3e6104241378c080bd
BLAKE2b-256 8cf2c16a808b36f8588c36c966cb354a01a363f8d2a0f237b7cefa8672cb25ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp312-cp312-macosx_14_0_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 71a5f76bb40d2a9e05b77ab17a15e315ddb10838c006d4874b55a85e123ffa01
MD5 4317f84fbd55ffdb20ae461dbb0345c9
BLAKE2b-256 7aba161db1f00a24686e1a8148600465e476bd307c02711a84b8673b92bb6d44

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2d1737be4498d4146185e6e97261bbe51355ad3ce9ab931a2af1179e56a7664
MD5 2f24f3861943e31c4c5f95d5a22c939b
BLAKE2b-256 5fd36b39399b7cd2da65d0802cc8ccba5452f5ed332697f6884568454d37956c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48c917e087ec93b4abe7bf035f28acb3e7891694e4dba08c502fbc2d5a476c27
MD5 cb2466bd9ac703ce4b856a17474b1513
BLAKE2b-256 1174b2607dc40b13127db1379d46e8d9701f2f6ef7220b0c798d700755418b9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24ce88ea948a2f12a1c308b707f983ec19b99f67fc304b7bc720022768e8e40e
MD5 5d30d557c9b2efef9810a0bc82240e45
BLAKE2b-256 bec103e55c89070b8c8c76cc0edeb7dc9d6ee5d0563c537b82551e2b1322e263

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6100a7fa4e791e33ba31c297b83167d415d2d5055d4c19e80c53518a169bc48
MD5 496e6fa7f1b84883b327bb5e0e27c9d6
BLAKE2b-256 528dba9b9c62a63b6e377d87bbc856e97ddc3a319f5ebf48d756e36a132f02b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 59e384b4d6d153bc652d9b7d0ad3aa717417a3be41890b85817540099f9a192d
MD5 5fa9092228bc868df15649a85a09e34a
BLAKE2b-256 358add1f1788ebc18b262f2f25dc023eaacabd975968d54abd03a0c47da22110

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp311-cp311-macosx_14_0_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 204086bba81604c406b493f9b32d96fa5d05592187d218c08c40924876d4c5c7
MD5 f4a22455a48b513a4c401af9a44dd9e1
BLAKE2b-256 47c0214c1d6b6cd4983bc6c037d29e91381331f13d8b759b38edc8ed78aca476

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ff3a9159e6ddb5aab1ccac1f84c760dc28bfe951f0dc7d5c469eaa34ba8275b
MD5 945f986c3ff2f4c46e9143361e83c8b6
BLAKE2b-256 699eee7dd3eed86b79e23461f82dffd393a31faebdd915402e2c49c72f496bdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66f495190683ef695d907c69ccd367c57dd9a508a7eb3044e6da02eccb25a901
MD5 484398eb30292691d37786b5ce74b667
BLAKE2b-256 e08efad050a29a064b1895368093eb4ab773d62a4e69ab2e3c9f0ca979527a8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71241547b495d8e475f8d0c1a59fa128fe0f606940610415d6aa5496612e000c
MD5 959b755e5a9f3f8f9405b0a025ff0beb
BLAKE2b-256 ac004a78165fb7eccf92e05e1762995ed115c1ec95445895e16674c46e7adc3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48b0026ff86bed12784ffdd85fad626af40a501fd02cc98c3d679d9643c5c62e
MD5 af622b3d92c13f5f3353985dcde7bdce
BLAKE2b-256 bccda855d717c96ae89184760f10c187c48e66d659812213c71bfa03d99e861e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 8e88b1720156733a07b189cb0b35c1a1ca98983cdf03cbf188f07068a753b087
MD5 2e84841576d6489ce6910d464a007d73
BLAKE2b-256 4de32f76d7774c48498fe7da8b6a7c4cd43049d8f13691832ea27e5392fc7b1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp310-cp310-macosx_14_0_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 162e2cb0febbbcbb317c570aa553290f4ab2527f77c586e552d5e3357d1f5a51
MD5 bc455011c6649b95768fcd182d82d4ba
BLAKE2b-256 e7f44e324c1024b46cc0b99ddd413aa75b85aee4487d96b532a3d2730af65484

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9fad6a84a1b45ee44caa8551c3e0dae1b122cf22f634ee8be955dcfa91a7917
MD5 e78804e29ef0cda7502ab88076ccfeb3
BLAKE2b-256 4ebd60965788dbc4ef98a09111087f04811d6ddf94b63af757adb8f8fec2f090

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8f03fef6fa930cdce6b3be35de14166fc4978f73ca630c7dfaedea1d2e18da2
MD5 e2c7e41ddac57ffee6ddc113c700208b
BLAKE2b-256 c08c22b96b2b6171bb9a976cb3fde19072616936dbba096578491cc4859f21f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40bd945278b31b247c8dfadd43a4cbe2b08e5c0fe6ae5ee6f12d7eaaa5ac4ea3
MD5 803e28f40ff21de6f83641e8dbcc5f00
BLAKE2b-256 9cd8022751d5eb7680351599839138e420fa931799b4eb1419a523b46b098ffd

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de97b470deb1d05c61e23cf340d33db13212e3ab813e33f2fc68e6414b54831b
MD5 7be56ded1994e21ff149e51fbbc773d9
BLAKE2b-256 5a6cc075656b7c5731061205d96b223947eb6c4629bcd0dfaebab34e66fcf8a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 331477fecf349e0d87e1f4ccf9bb0eccd3618b1033ff1fa2cbb8acc7918f16b1
MD5 bb8328b1daa5704dcfcc059f0073e782
BLAKE2b-256 44800b8c89b42736a0e87672bdaa2fea8b97460a3ba378e86917c080f03440e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp39-cp39-macosx_14_0_x86_64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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

File details

Details for the file python_kadmin_rs-0.6.3-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.3-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a3dd7ed1852898a0be2eb2d69a680f5fd55070057db18fefbd71dd734f1c0ab2
MD5 041e15eabb6dc633a3624a089235ed2b
BLAKE2b-256 3c18d797be19ac8c98fd72af140af7d92474c0b0684bf1f5c9daebba330cf2b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.3-cp39-cp39-macosx_14_0_arm64.whl:

Publisher: ci-python.yml on authentik-community/kadmin-rs

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