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.2.tar.gz (89.2 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.2-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.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

python_kadmin_rs-0.6.2-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.2-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.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

python_kadmin_rs-0.6.2-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.2-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.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

python_kadmin_rs-0.6.2-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.2-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.2-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.2-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.2-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.2-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.2-cp313-cp313t-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13tmacOS 14.0+ ARM64

python_kadmin_rs-0.6.2-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.2-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.2-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.2-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.2-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.2-cp313-cp313-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

python_kadmin_rs-0.6.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

python_kadmin_rs-0.6.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

python_kadmin_rs-0.6.2-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.2-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.2-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.2-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.2-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.2-cp310-cp310-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

python_kadmin_rs-0.6.2-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.2-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.2-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.2-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.2-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.2-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.2.tar.gz.

File metadata

  • Download URL: python_kadmin_rs-0.6.2.tar.gz
  • Upload date:
  • Size: 89.2 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.2.tar.gz
Algorithm Hash digest
SHA256 ac8b67d738276f59ee5f6b45cae881810da6982154e235e318819c139b1fa337
MD5 99258e36f74705fb8322bdb0f760377f
BLAKE2b-256 b05f5a9495331927066b27463c8bdec9349ce94656df79f5d6af487cf58c5177

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2.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.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2726d3a959b1d3c02f2ed4c857ff6f942e4a552f873b599b214db6740b348023
MD5 33add8fce73295d899db5965d78904b0
BLAKE2b-256 e1471ea27285965cedcac3c86bb4ab3cf6194cd6c13dd277708fec223c470c62

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16e565c2dae577c25647a9d51e0c7be5f3337012e8f562ea6c47b584d4ae9569
MD5 2ba03717d2c549973bce19eee557f592
BLAKE2b-256 7835cbc986daec9c023d26ed0eea615617489d30de99460f5f831880b1aced1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-pp311-pypy311_pp73-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-pp311-pypy311_pp73-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 96e21f8b474185a1d5033554b93e7585bfd0b8b368a3130abd133afc62352b46
MD5 89dafc84663d78b9b1f652aef26c7a79
BLAKE2b-256 457bb930535e344e5e550c3131a8a0281b6ba7c2caadd009df38d033594b0816

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b04df419504bc0e79f931ff9b62b86ec4017036b1550fb92fe1925d49a0666ec
MD5 77cb0fa0a63d27a0e72592432ff20ed2
BLAKE2b-256 4e47c8de5936b13a871f21bc2e506dbde816e83bf0d44f474f6fd16b86d2fb36

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e239952b47bfbe267fb161bd21bea21afd0c945b297d348e2d60520cafa6931
MD5 b9d0bfef08ddd908b1a7ae8e996b19c9
BLAKE2b-256 28445dc37389285d20b16385660c5c423c8fab607ad9f4b28cd0483afbf7a351

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-pp310-pypy310_pp73-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-pp310-pypy310_pp73-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 c78dd4c2285fc1da4a8ebd06101b18e1d862507e162fceeb1138342616fd61a6
MD5 6226f8ff08aaa804e05e067f8ecb5600
BLAKE2b-256 1dd834c3c63ca353a3517fec6669cac26d6546092d9f1c1f44405b3ebd0619f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3eb39dc188445f5fc0ca0d418f146ae9ba0521e62fad895f9f4d4d7fa8c242c8
MD5 afa1467d158b1d5b6d607433f3f379ac
BLAKE2b-256 f3c95d4021bf38370e505e121af02575ef61ace5448caee2f827fdb458ecf379

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e623a3c74c895e23cbb3c52adc5e99505521be72eca45d0c001438a989bbeb98
MD5 ea8e4fcb86de284cce5922a6c5eb1d8e
BLAKE2b-256 f86243f2886de14cbab4f203761921e9edb25946d8706763bc4541625cae9b64

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-pp39-pypy39_pp73-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-pp39-pypy39_pp73-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 89f9cf112ad1d7fe16438226b5efd133b4e18477f6ba598628603a0717bdb538
MD5 362cd5b3918747d07ccab509cbf828bb
BLAKE2b-256 94295a6eaa76fa163ae1e4e71afa67e935b2794084515f983295e4df20820866

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8e63bfdfd11511d96f9f910e3f5d6eb8b7e6248e19f293c4aded5b65ea16895
MD5 32a44efc372a2690abab2846e17c8a45
BLAKE2b-256 d6331bf235bdcce43311dfcb28f29587402641ee2a21af4177c41a869570570b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9a827316e85832334db0621c6a638d05b5d943591ca8f6f16b4062be4810f93
MD5 37f134aaba1125a9fefb5ebee6e63d0d
BLAKE2b-256 795c85e281bcc5323a19449de951a1b030f9a07233fa770d77ae5a5c3ecc7e85

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae1fbff8c720a3d090ba0735a6c6a5cb4fcb148d4555513dd57b6a53267047ce
MD5 acd1b89e910fc72020723f6bbb4b3945
BLAKE2b-256 5e5586c32f0563e9f886d48636507a6682e1699c26373c6516d9328f5e7ff48f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9185b575ed9e3cfbbff5928a6b0b60a31eb9e94781512bc4573d6515ff91c406
MD5 e26772e9145e6f102481f6a0912fc71f
BLAKE2b-256 a982db4f9486ce1fdadc8042491f37b7b319aa0438123087fbd1f0648114b407

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp313-cp313t-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp313-cp313t-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 a46b0399e31e84844e05118b38e7727064a2a83c924b6ea8b45be437ebb165d5
MD5 dfbb0aecf09d7d61844814549669ac61
BLAKE2b-256 40f566749846d3c12bb03abcfeaa98a91386a15eaca311e45444a667c225c762

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp313-cp313t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp313-cp313t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9d6d11743162dd6e94f6ee1d0e4c326af6b7b9b5bcf7ecd75f334e4d3eef4f39
MD5 4a3cb1a5773cc0e91c034c48b1497c55
BLAKE2b-256 0e937f9189fa70578b9cd11b326bf8daa1b0ffd5aa1aec28093f16e51688cc0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a897b69d890202045827eb8915e29bd665c034152eb570b75cb26667d076909
MD5 dc34069962e8f2dabc2e7537b9767b1c
BLAKE2b-256 b66baf761c6db0869a4de089a955dd11fa32be9c388a55e455919990ee68e53f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e41eda7d18184e3f2b936ac94186ed90a722c3b7eec20c63acb0cdbae02a2b19
MD5 4bffc947623a76d4a995702faa5c0f61
BLAKE2b-256 d270f3ac0c80484be1716c9f1dec15c97367b135c9803c59f62e1e1e2ae44e9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b62606da8b8591355bbed35ef43f540bc6a0245eaf026c122526bf54b657701d
MD5 d61ac2fc439fcad91da5ed24afa7eb56
BLAKE2b-256 89f1c6841c23698f84688fa1bdea20f6c33db6899faf8050d03acafa01fce736

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa8cec8e73e24d61f28d0c214feec48511d72de8f8006bf335620087c0b53655
MD5 f490cc60659675d209f8690d5eaeaabd
BLAKE2b-256 5c098940efbd81020fbe8bed8ac6972d4153a34840d995c1f207da643739baf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 be164a5c751caa911c2360183b26586aa619a215340feb0b74c547158f33940b
MD5 4b1ec1fddb66fe5d8640e9a22211953f
BLAKE2b-256 e0d00fd5c7c23aa1a686925beca68a98b0f8e61a87b2cf9864a323ee592bbf39

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 71ed52138c888c837c3cb5f60467909f1d4b5ee53563c41d4bf57f011c12158a
MD5 c53b836b8e892c603b9d4702bea6f7ee
BLAKE2b-256 2b1601a6dcf305e25cdc81ee111c94545ef250caf84cc4446f02eca643154341

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bcecd5226012b76d17e9f07bfebadfb54e1c755d30fb245e0adf89a282ae6b8
MD5 08573283b1d11036e99be7d53e9ac0a8
BLAKE2b-256 fb2d27f5feb84c898c67ad54db9022e1f0f471991cd46509e9562ac80691e4e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 707fd790a3cac19623c829d185e35988d13a7cb13351e20c8f6e22a0f9427f71
MD5 56ffbe8de2fbaeb3865860c34ed9aae9
BLAKE2b-256 fcc8f1d64916d1daf28ca06ac9ebb52fb8069a1f968a62e13dfab57a220f8e3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7be56b668fe1d3333b9f462b4babc1077bbd287713cd8859b7ccc2f1c1abfa1c
MD5 e23a4a6b715b205222b6d81a28590732
BLAKE2b-256 f6da02ec3c631a4e441559a5d5db641ca57405b02b1c4c403dbf24cc2d6c6a20

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bccee7db9e05689435276544978c7dbdad5f69fbf70ac16ca5b01735afc36d74
MD5 b747db86d8802af4751b9a401eb565fb
BLAKE2b-256 38a2b676468aed9915a60fc49642438452369cf9ccabc3bce5e920ef7109e8a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 1d4934fa9c91c3cf40a3d4aca9b5d862ee4d7833c4130eebfb8e3a0c65bda84d
MD5 187cc72ce496df8418a412d04e62e113
BLAKE2b-256 e16a26bc795ab3af980487c959f226b19935ec22d9a9af0498b56c8b6b6042c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 744fc37afb43853854c07a638096b33891a6249fab6c3b24fd5364f6f18c09ba
MD5 b84ffac61596055d3c4cfc5555c42c9d
BLAKE2b-256 d31ba9107a378edfb499c9cca82ab7c2b29191b6ca3ef2322622224a1809a839

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 659de978d28b4f6e41963f1acbdb8393d8ec3d5323a5c9d221d2bcc25549e481
MD5 e61ee57df2e64afc2298ba6b04c021bc
BLAKE2b-256 4e2874d18d50e8f1c69135856c74fd8a8e0931695e363e40b9c9bbb2abb28944

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 125299ff07ba514ac65a87095e14f5f57c984d60d62116cdb82de7a4e89d7e53
MD5 3b50cb962a3e806d9070e5fbf28e0210
BLAKE2b-256 8d8d9af4e232958218158796b549a099b129dfd0e69913831acbf79e76f86224

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c46b8121dbce7c719de41d05b9ef85441273d9e959e9249bb8656861a6861f4c
MD5 54319a1cc94215bfab0b19e14535adce
BLAKE2b-256 a0db6dfa897497901d6eface16be2678a1fb17f561fbf535e8f689378ce9cb13

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c90848333c9a3aa1566ade2e8cf8d5aa51175fbe5282de053d79886294a58cc
MD5 9f2aa871a3df49369bc0a70ff0bda13f
BLAKE2b-256 c05c468f650aff4f905e5074a99a81f8d4b1e4f00168662c7c4c6f80efdb3314

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 d1468e041b212c5c4ee97ee7f653482ba43bb8fa7e4216cf99fae5949578490a
MD5 9c1b565a6e911fa5744e168ced95e2c5
BLAKE2b-256 33716928dab3e0d6e5b6baf7903f1aa71479efe3c99e4aa87ced47d1bf5142ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c54864bdfc48348a389cd2ea9c660515d8c0b2a7b7394529a24b7f5da34c1017
MD5 c8d6411a8d5edfe9e11a22e02c5dd27f
BLAKE2b-256 a92be0a4cc38d6735ef3112c3fb7c66a361287d3f2902b4c2beec9f61379386b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 905764ff9df04516ed9b8d3803bda624ee8c0cef85f8b651e6674d6fe7dcaf62
MD5 77ee27a47c3c31b3c5c380a3c3f7e68c
BLAKE2b-256 9b198e880b85259fd66eb2fb9f3178022b1284797f3f07284d6ffbe226fdc136

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b47039b74a5d072fcf09d52b15dcda1a98a8e97d0e7da22292a9eb321590bf7
MD5 f4300887e05b9cd0a260226e7c7dcd2b
BLAKE2b-256 6968388e3766bb4a8a0f649cc776da15fba303bcc0e57dac5eb71754656ec189

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d1104511a8f17c9e96bd95a694d65a8f428322d29bfe4814bbd32157bdca0d6
MD5 96affd9e4a946c2f2c708d078c6f5760
BLAKE2b-256 98a767c7407297886ff197a1d9dadacde338e362e61bb57437f74f1a01f16f25

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9968b9960ca1cb9c60508f47a28f804caa215b5f743dc47e85aac25840a71156
MD5 32a21a118f3517a05a03e0c47e5f6858
BLAKE2b-256 3d2aa6d5db20460595fa71ec7cd0932d26b2d675ac90e24fa26030019abf3414

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 69165b0c679917888b05075f44da9c1c447f21f50062f9bd6f76f770f54a9d65
MD5 47e6770a65fc9c1b3543b4edc48d818e
BLAKE2b-256 da63416824bb76cc09a4673e1985db37fedb1da68d19cdef59fb9ea00a2f0806

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 cfb45acab66af2356232da4a46965e469c6b374b789a91491423ee9ebc121325
MD5 0ad10ba4ed3ef906e375a521de46bf08
BLAKE2b-256 060cea0021b0bcfc609f1bd98909c659f40636ddd124362016d01b4dc6bfab7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2718d06581fd44034079e6040f15d5eac23c619ba188e2a9b8fbdfd521d82fa4
MD5 92de2482cc1a2b4aa0fdc34afa737d6a
BLAKE2b-256 a4a941f61f3d22094fc907d534db31ce44feacc359c4a37928cf2e24ba23b77f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f86a0943e4fc532ac7b138ac4e5b824f68b4776a633b375e40cfddfd51cf1417
MD5 70a9655d7b287387285b9c0c3acb037f
BLAKE2b-256 d393d1650b60e2b5592733bdae74b2e66285b1e115db0a2344f4e0f444f1dde2

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6471581fb08f475339fd4fcb4a8c1e8450710fd00db5623e1bcc90bf3e6c840b
MD5 70049cd0135387959413b58317d0bbca
BLAKE2b-256 12d01f971efd8dd32814e41731939ec964253ae4eebdf1610765d5dbb0e95dfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7883a42d67725490831e01baaa7dd2588e963e7872824a22cdc4d0289829d906
MD5 d76a3176397f19efb3d6427c508d135d
BLAKE2b-256 6d4f713d9bfea43202a80eb035b89889c3a12aa7b2d4f481a50333d9a6ccc06e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 53729b61f16c17d5ea07f02ffb63215b86e17e500bcb70dde35d8f7c229f43d0
MD5 474f79e390079c13921a45936b3a175b
BLAKE2b-256 220fee9b14909111340943a083487545aede4739322058f936163660b2b72275

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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.2-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for python_kadmin_rs-0.6.2-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6ce663819baae3d2ca41a1fbac6183d49b9b48692dde8f85ecbb791679939dd2
MD5 eea2363f326f7bf9e614515b4a16be1f
BLAKE2b-256 75c4bd736378eaf42f358e978352767a2c20609fd3c5cea36854bc4b5f5507b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_kadmin_rs-0.6.2-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