Skip to main content

Decrypt DBeaver's credentials-config.json file and display the output (a JSON string).

Project description

dbeaver-creds

Python versions PyPI - Version GitHub tag (with filter) License GitHub commits since latest release (by SemVer including pre-releases) QA Tests Coverage Status C CMake PowerShell Gallery Version (including pre-releases) PowerShell Gallery Platform Support PowerShell Gallery Downloads Dependabot Documentation Status mypy uv Ruff Downloads Stargazers pre-commit Prettier

@Tatsh Buy Me A Coffee Libera.Chat Mastodon Follow Patreon

Decrypt DBeaver's credentials-config.json file and display the output (a JSON string).

This project ships in six flavours so you can use it in whichever language or shell suits you:

  • Python module (pip install dbeaver-creds) - importable as dbeaver_creds and exposes a dbeaver-creds console script. C-extension under the hood, no external dependencies on your machine.
  • Native CLI binary built from this source tree via CMake. Single static binary, no runtime dependencies beyond the chosen crypto backend (CommonCrypto on macOS, BCrypt on Windows, OpenSSL on Linux).
  • C library (#include <dbeaver-creds.h>) - link dbeaver_creds_core.a and call get_dbeaver_credentials(path).
  • Bash script that works on Linux, macOS, and Windows. Requires openssl and dd to be in PATH.
  • PowerShell module (DBeaverCreds) exposing Show-DBeaver-Credential-Json (alias dbeaver-creds). Pure .NET; no external dependencies.
  • Batch script (Windows only) equivalent to the Bash script with the same openssl + dd requirements.

Installation

Python

pip install dbeaver-creds

Native CLI / C library

cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build
sudo cmake --install build

DBEAVER_CREDS_BACKEND=native|openssl (passed via -D) overrides the auto-detected backend (native = CommonCrypto on macOS / BCrypt on Windows; openssl = cross-platform).

Shell scripts

Place dbeaver-creds (or dbeaver-creds.bat) in PATH.

PowerShell

Install-Module -Name DBeaverCreds

Usage

All entry points accept an optional path argument; if absent, the platform-default credentials path is used. If the credentials file cannot be read, the exit status is non-zero.

Native CLI / Bash / Batch

dbeaver-creds [PATH]

Python

from dbeaver_creds import get_dbeaver_credentials

print(get_dbeaver_credentials())                  # default path
print(get_dbeaver_credentials('/some/where.json'))  # explicit

Or use the console script installed by pip:

dbeaver-creds [PATH]
python -m dbeaver_creds [PATH]

C library

#include <dbeaver-creds.h>
#include <stdio.h>
#include <stdlib.h>

int main(void) {
  enum dbeaver_credentials_error err = DBEAVER_CREDENTIALS_OK;
  char *json = get_dbeaver_credentials(NULL, &err);  // pass a literal path or NULL
  if (!json) {
    fprintf(stderr, "dbeaver-creds failed: %d\n", err);
    return 1;
  }
  puts(json);
  free(json);
  return 0;
}

PowerShell

Show-DBeaver-Credential-Json
# Or the alias:
dbeaver-creds
# With an explicit path:
Show-DBeaver-Credential-Json -Path 'C:\custom\credentials-config.json'

Development

Requirements:

  • Bash
  • GNU sed
  • Perl
  • Yarn
  • curl
  • cut
  • grep
  • tr

Notes

The decryption key is from the DBeaver source.

It can be converted to hexadecimal like so in Python:

import struct
as_hex = struct.pack('<16b', 0, 1, 2, etc).hex()

update-key.sh demonstrates conversion using shell script.

Tasks

  • yarn format: to format the project's files.
  • yarn qa: Perform a QA check.
  • yarn update-key or update-key.sh: update the key in dbeaver-creds.

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

dbeaver_creds-0.1.0.tar.gz (17.3 kB view details)

Uploaded Source

Built Distributions

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

dbeaver_creds-0.1.0-cp314-cp314t-win_arm64.whl (13.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

dbeaver_creds-0.1.0-cp314-cp314t-win_amd64.whl (15.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

dbeaver_creds-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

dbeaver_creds-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbeaver_creds-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dbeaver_creds-0.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

dbeaver_creds-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbeaver_creds-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (10.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

dbeaver_creds-0.1.0-cp314-cp314-win_arm64.whl (13.9 kB view details)

Uploaded CPython 3.14Windows ARM64

dbeaver_creds-0.1.0-cp314-cp314-win_amd64.whl (14.9 kB view details)

Uploaded CPython 3.14Windows x86-64

dbeaver_creds-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbeaver_creds-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbeaver_creds-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dbeaver_creds-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

dbeaver_creds-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbeaver_creds-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl (10.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

dbeaver_creds-0.1.0-cp313-cp313-win_arm64.whl (13.7 kB view details)

Uploaded CPython 3.13Windows ARM64

dbeaver_creds-0.1.0-cp313-cp313-win_amd64.whl (14.7 kB view details)

Uploaded CPython 3.13Windows x86-64

dbeaver_creds-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbeaver_creds-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbeaver_creds-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dbeaver_creds-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

dbeaver_creds-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbeaver_creds-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (10.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

dbeaver_creds-0.1.0-cp312-cp312-win_arm64.whl (13.7 kB view details)

Uploaded CPython 3.12Windows ARM64

dbeaver_creds-0.1.0-cp312-cp312-win_amd64.whl (14.7 kB view details)

Uploaded CPython 3.12Windows x86-64

dbeaver_creds-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbeaver_creds-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbeaver_creds-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dbeaver_creds-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

dbeaver_creds-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbeaver_creds-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (10.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

dbeaver_creds-0.1.0-cp311-cp311-win_arm64.whl (13.6 kB view details)

Uploaded CPython 3.11Windows ARM64

dbeaver_creds-0.1.0-cp311-cp311-win_amd64.whl (14.7 kB view details)

Uploaded CPython 3.11Windows x86-64

dbeaver_creds-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbeaver_creds-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbeaver_creds-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dbeaver_creds-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

dbeaver_creds-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbeaver_creds-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (10.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

dbeaver_creds-0.1.0-cp310-cp310-win_arm64.whl (13.7 kB view details)

Uploaded CPython 3.10Windows ARM64

dbeaver_creds-0.1.0-cp310-cp310-win_amd64.whl (14.7 kB view details)

Uploaded CPython 3.10Windows x86-64

dbeaver_creds-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbeaver_creds-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbeaver_creds-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dbeaver_creds-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

dbeaver_creds-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbeaver_creds-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (10.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file dbeaver_creds-0.1.0.tar.gz.

File metadata

  • Download URL: dbeaver_creds-0.1.0.tar.gz
  • Upload date:
  • Size: 17.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dbeaver_creds-0.1.0.tar.gz
Algorithm Hash digest
SHA256 19307db10834d45fc694a2da998dafae46e1a8123bb4d43d09e5032b3d3d2e3d
MD5 976f58ff2744915170e489eaa59397c3
BLAKE2b-256 1e070fdf61168e43b79ab68ecc74953871d82a0204ef5608ceeaf3c48c9bdd96

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0.tar.gz:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 8b1b664b37cd0964ba0dc448b52e21695101b6a298f28973993c0525c6aa36e2
MD5 5064c1374a5d731dc4b7f12daa8f8da7
BLAKE2b-256 b47977966f91a52c96a1935cfe87a462654063e865c99a5419651174d13f3e02

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314t-win_arm64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 981dc0b4cf53dbcffa9317d7b68fe72e1b0fafec286318fd4b9c1c4a4781e74c
MD5 ba1c875d0016a94271e69bf3374d1288
BLAKE2b-256 241fc6ebb3c7abd7c02d8168cf99f2dca7ae84a0d5057b5e0302e71329dad280

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314t-win_amd64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c7160abf3bada9f74fe3cae36d55169fa81f06ec15f474950592c9c96c395d5
MD5 908e101356d3becffa9a0df9f5094891
BLAKE2b-256 ee0d5c804a7c2357591db7734c10f1e353f6c7f226f73bbf29fc230fdaf09ee1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b0077892b4d12f5872d5a5d994fa6eb14511f1095c273cc6603b0f65748c72a
MD5 d0acf6aef583261989e46626f6fcdc98
BLAKE2b-256 46df4ec1630ba7a0214e02db132ce058ea6a38d02764178d45bb8615eb6b0e38

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa78d0db1f2be4f00b4808936235ff0bcaa04e020ea16f2b4d2ff5b9d8154510
MD5 452bd26a3e36064ee26dd35ec62c887a
BLAKE2b-256 b7c13c9794bf3ed968b666bc0696804d1a71fc6f8b4560fa1deea662c06d1a76

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54f2b28b7da659d5bc2d6da2532fbf88be4e2f854ce3279673d4ab3f7dd15227
MD5 dda83df0a2b52cd08317fc1d837a2248
BLAKE2b-256 d521856156eb861662b794506c864472c9d5a8b800f33298a00add345c2ca5cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5682e1092b8017ac965a542fcebb30519af95f479738ec75431f92ea2d91eadf
MD5 3bd6a1908c4a8e25fc9b6d06e6a6845d
BLAKE2b-256 044dd7ae75ffb1caf87d10991eebc05fde6055ff8eabe6a4c66137b764f4eb49

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7271420c09efe31867b9be9b6973dcdca2e9f8091994b605c6780b51c84bf8fe
MD5 feba3761645be6a8525f347d5609904e
BLAKE2b-256 509d598cabc17b657c36a52e5421312ecddaa9b9189c2f3f334be3c063846b28

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2fe64618efd9ca15345f06261cad74014c0add85ca7b30aa08f05b717451560d
MD5 06fc7749d2351a0f002d1348e3415a01
BLAKE2b-256 11cca8e4e85f26d8e5344054512bcae1f8ee92fc9253a9af660b731fab554f36

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 09716efd61686af6c3d160a8b7d7e7c81c7973e3d987ea27386e5622ab883865
MD5 0d9b9fc57c0a60e1ab92b10209738959
BLAKE2b-256 d5fd4aa52e47989c33aac229a7e452c927d60edd835fc47df50596d2b193ab2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b1e0e84f5c694ab379be02f23cea1e6b7f8a5905da0e5d916a9c04936ea4970
MD5 db7784ddbe792d304aa8f5f703a8b271
BLAKE2b-256 5c07d45564a2b5b42d2cab627e9a10557407e51a9e57accb4ec38bd18843b979

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9eb9a0e2185c79931572cce02ca3e838a439fd57b17c4cdf22cb79f87a6acbb
MD5 89881dfe61bc76374cf0dbfa0b2b3e2c
BLAKE2b-256 cfa6ca54a8f5f432e1622324baed08f0519280124e9b457ae3105571f3a50024

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6299e78e6ac8c109d0b9e19be990ba026704abc5d4ae7346ff33ee5022ef1a20
MD5 ad6965e6bf93bc2fe7f533752f6f4106
BLAKE2b-256 3b37671165c4883ba10f2fccefc095399ea9bd15728c324ed745eb4091a2bbfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a9b99f528aada9fdeee754f6bb251272eff130c9165be6f69188ab5818ebe51
MD5 bbf000a4245e2533fd4c8f554ffca58a
BLAKE2b-256 ae51ce70f70e8ce2856cfd27682cb8390fc51c2dd0c364602409adef97e2113e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 538213eaf9a17731d22202b8f623952efa87bbf4045021c8f73302edacdb92f0
MD5 8e5d04345873914ded373751a12e7aec
BLAKE2b-256 5338e5bc8786e36f046b77a9d31ca174183a166b121e8dd38b82a1ce4803971e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 80ded596536ed73592af9b8ff7efdcd5e4dacbdde338c4b13112059805c3e7a1
MD5 ed1b2d9f2c1d9d150bc0a7d0a11c0215
BLAKE2b-256 8907707d11b258eaed3f6384efe36d39bad56a8d17df50463a403954e05f362f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d0440d80bbc3cda16c002469709b97e902b5c93fb1cb0e4d380facb4fd622ce3
MD5 4579b78cf6e69f757823ff35df942063
BLAKE2b-256 6e338e2ff3c9d5a0cdc9413881b1eefc7e79313ffa23035c95e2aa61ac8593fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4f0add8c7bab03445862684fd69811e1863dade4eae4631c189493ec069947f3
MD5 738312df9c03527aab481021c3a501bf
BLAKE2b-256 0d7bcce1933f1a0daab3af5c8ec7ec85e0d5a76e1b3fa342d710a4803655a869

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa0b258dd39bf778520728bde48c3b1314aa3108cc09f9f8f56f719e62832052
MD5 cf220f52d972760c3e4b6f54a534a6d4
BLAKE2b-256 ed27429198d3bc4b79247bbfa91594f9ad94a0b904791a6cfff8c780b41f1a70

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e29e9f48b757dde97b94ed8d6f659d919ac3681abc818ac6f09edc47c5ebc38d
MD5 43e80866379025022eed01d7dd741787
BLAKE2b-256 ed4c010e3dbbd68a99db7aa4c302ea69c031ce0ce39e41a1bc09ffa1732857b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ae1f167fd020b35c393c299d3b1489f2cc117690a46d16ecc523c883a09a005
MD5 32d19a1ea986209ae52525f8a3a9b888
BLAKE2b-256 941ffc230bee81f4804693fa374b089d823c56d9cbe70bc48864f3311402890a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66c40fe5cbf348653fccfae0a5c810aebf1bd749879731229323af8a47733068
MD5 294cb881227fcc64c43235656681617e
BLAKE2b-256 6b053fefdc22bd377974986fc2874aad77d4f1b04a48b42a85b1ec1b7926077b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e99bad51639102fc2b7b855ff7216a2187228621a4bfe74b622292b7e543d6b
MD5 e1ec9c7963e02abf75f6323e7af81a33
BLAKE2b-256 d97b5fe81d48c41ea464b7f796dbd0378dd24ce6368ca5b853f597d1b35c09bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 70dd21746649adb38f32caee212473dead042a87df19a5cce5d99c35e45dc7d3
MD5 36cb7481473f636786499db0a032bf46
BLAKE2b-256 cf1d236b98fa9af7a0285ce6ed9462f5e2f04613ded48aaeec8e4a5462c36a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8e0937f222ef4f6b23473794f249d77a149d807b555eec473014ad653c846b30
MD5 67f556d7fd8351d0b0f8eaccf0e580d3
BLAKE2b-256 94790e4ef25a9f24ca4514eef14032eda486ed271443f93cfde8c268e1d328f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4e129157eaa1c9f4ab4c223fc58eeba4e8f9efbface670552f7f4477dbf545ac
MD5 68808a206d1f7d3da48d7f3cc4c18f54
BLAKE2b-256 9259949b06863516857bb13ee2ad02e43d19a52f1b62adc481c3a69d4c41aa7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b7dfceea5dfe5689bf2020c1016d8dd0e6c0876b07a236bd4cda75281b6a633
MD5 6248b4573e0fb954bd997e51765b0337
BLAKE2b-256 ff15402a762a27b4bee0be79a261fc24a04e0a08971edd7a540168eb5e2ebea2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c086eaa8b3d69331e60ce4b8dce0a260e401e9244b991027a717c632e508159
MD5 cea2f9159b2d22fc3eff63ea39a89c93
BLAKE2b-256 7d18ee0fe141d8ab2e5f7a5cee6a2d162d0f72e31dd15f0c90f1ffba5ab752e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5dc0e1d167de2653195c7da7ddf4a56475b3e6c928ccf5ff3243b1654bbb42d
MD5 dfee28dc0951c00550c0ddfe12ccfac5
BLAKE2b-256 65e8bb9e98509e25895673b97056aa2c22c4e82dd9b8ff66a61a6fe2c7f1226c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2721fc3010d660046e1ae29e5784e9dd9916a30d80d9c60c47a805033ebdcf84
MD5 ad50eb68e514cf5cc0b23d4a66fa25cf
BLAKE2b-256 c27c3806f2f1809a9999fa430e92a3fa6f4a4341a7411b11ce509929a4219fdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5a0db879e132baf238a1073a68cc3559558af105713c573f4d414bad7fa5822
MD5 12d3519e9315b98fbec2c7c10b1ce1a9
BLAKE2b-256 a9bc3b8a077e0ddc3ff39fcd5a3025b02f1fa34f1a8ee5977a3ef9bea9206196

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 175e21cd2cddd745f50e94a3a314e8c8e76d045dbe9307e5f7eb4d4ea1f0143d
MD5 9b737821fd0138d257fbf8fafa8f5ee2
BLAKE2b-256 f2fec73958cf5a6e6d4018e0393ed690d047f916d066281ae4b019e2d73817c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 129102f38b8e8a3aa7415e753c6c1024d02d00604161fab0743497fb89e054b7
MD5 ac8dea44ee5207b149fe750d4d0534ee
BLAKE2b-256 4ae8b15eaa0d5db899a5e0e860b9fbe2ddad5b2e971221dd32017ec3a8828e84

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp311-cp311-win_arm64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bb5906ec5ad1ed0276ce021592f808cf1e63ee51a510c28e828760ac83c7182f
MD5 6b1558b3ca252c5c4fc531faca33af32
BLAKE2b-256 3d0d1dcc78530822d8f374da0e7fc206e975fa45cc3e7efccb82c9005df28e29

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b1ab2e4ff2d4117b6f27e43d5c7c8e80f63d73692751dbf1c5c02c492136e19
MD5 01d6d703e757d9b8471df99f46ca687b
BLAKE2b-256 8e7d26ad112581fc771a7266640dafb83c7286906b4270b819dfad924a37ab81

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75649a4fc218af853ce9168c53fa5ff16fb48edaeaa067dc36a82509595acd6f
MD5 757e08b692a9b5ff5796e38085d8ff12
BLAKE2b-256 b2bc6afd8cc8ea376ec4f5bd1e5a3b34f954007549977f32a93beaa58c3c900a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb5be77f71e74095d3807d10a192bb6f1ea620df7f3af40ea24484ae66628e33
MD5 172431b30f097108ec620cc36571c85d
BLAKE2b-256 7f70537cea7bd72508265a081dad285cabff4398773865b3350e16af4a858ad4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 60afccbdb842e07f4ab16390f2198ac2bc386e9544272536a282b553509d177d
MD5 7f77317e2c79b63fe41ef7cbec7736fc
BLAKE2b-256 80f5504b58fd717745b30be2f333c38b9690f36a966920f301ca29f8deadb654

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82730a82a13cdcb7f27c5c4445ae6903760275afb12b1df78413aaabdd85b33f
MD5 9706ee271cf57ed68853da752690e9dd
BLAKE2b-256 2060d22500e2f93275c8b2cd19783ef929eaba8a8d77ffaa1c522b4e9d2a6c43

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5338108a10cd7471408ce373c7b47d9f322206f3f7de96fc5339ba34f0f3efaa
MD5 ef21fd6d95651e4dbc33539d9aa6070d
BLAKE2b-256 2a143f5614fdce057655310160fb429bfdf6b3fb4095f1499d4719ae490d57da

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d3e70772103511072ccb46c49eefb9370434acf08124834e7003a3eff89d68ce
MD5 71d563cafed942e05d9419e80fc48e1e
BLAKE2b-256 1334039913ef97b882f4a3ff1212ec564add3914e99a989ae8eb1cbf4ffc19e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp310-cp310-win_arm64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8cd70b77992c7016403319da2834fbd155caa6a0cd08e3e46cdc8b969aee9146
MD5 d807c2e693ea154df8982c40ba9a6efb
BLAKE2b-256 cd026bd5ba82b99fde91b2e374da94447fba1e90f0a045fe37eda155e3f27ea4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26510e92abc935f4a5a0d14d4847cda5730ee5c69d3dc126689c2be0321af929
MD5 86c1031d2a34010653547070b926d610
BLAKE2b-256 600df8b00030466cc094127a5f7bfe56e3a7d29d137928131744959ce36e525e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3a1b09a524ec3c09fe5dd3b7805fd5a55e194d20cfc05c8c61139c2a885199d
MD5 7e3973ebc35bca725c9c63d3b89d3c84
BLAKE2b-256 69c3a35fc7630ccf7c54f4bfae390eda3a49e48d741360928f633e0ad6baaa2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 789d10d34ee6558e9dc77ee759d14201fa6bb35376fe05c869520cedd559b073
MD5 d74d5c2c06e7c0a53213ca42ec0ec838
BLAKE2b-256 513231bed4568cfe762d5b444800da7bf7b59afbfaadeabb5adec652ebd20253

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b53879da6b8641685c4918d0c44a32bdb194fbc3a68a021f2c48870db8490a12
MD5 f52b5de75eab7792e4470f87f3c1779f
BLAKE2b-256 2260ad63f57c89c38bf3e02beac1829e202a42bb3b7f493767e7bb2a775a1340

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e83a45617e3b964b2e0e9f66ffe832109a77c255d016b17815beb7c63fe2c618
MD5 c83ea7abcd6936c82f83c246f151dad9
BLAKE2b-256 88fd451be05a2eae25b5146f51fc1d10dcf3e7bfbb68e950a09f8f59bffa119a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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

File details

Details for the file dbeaver_creds-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7c91ee090efac3ef8ab4cd36bd705e298734b3d966fab06e9871425d0bf1401
MD5 cb8d3661753bee5c57aaa9c28a0c18b7
BLAKE2b-256 837b15c5899127e37b73f7e5303b0dfae6ddb416a8adcd3eb286543653307d29

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on Tatsh/dbeaver-creds

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