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.1.tar.gz (17.4 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.1-cp314-cp314t-win_arm64.whl (13.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

dbeaver_creds-0.1.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbeaver_creds-0.1.1-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.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbeaver_creds-0.1.1-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.1-cp314-cp314-win_arm64.whl (13.9 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

dbeaver_creds-0.1.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbeaver_creds-0.1.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbeaver_creds-0.1.1-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.1-cp313-cp313-win_arm64.whl (13.7 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

dbeaver_creds-0.1.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbeaver_creds-0.1.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbeaver_creds-0.1.1-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.1-cp312-cp312-win_arm64.whl (13.7 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

dbeaver_creds-0.1.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbeaver_creds-0.1.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbeaver_creds-0.1.1-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.1-cp311-cp311-win_arm64.whl (13.6 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

dbeaver_creds-0.1.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbeaver_creds-0.1.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbeaver_creds-0.1.1-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.1-cp310-cp310-win_arm64.whl (13.7 kB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

dbeaver_creds-0.1.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbeaver_creds-0.1.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbeaver_creds-0.1.1-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.1.tar.gz.

File metadata

  • Download URL: dbeaver_creds-0.1.1.tar.gz
  • Upload date:
  • Size: 17.4 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.1.tar.gz
Algorithm Hash digest
SHA256 c2bee02f8cc073f2ce586f9d95b131fae08e5018f22c54bffa2b34263bb99830
MD5 14d2a1048bb416ea486763d3a18d2d18
BLAKE2b-256 dac77000f38a9a796bba6671d3b59261f5bb0291e0d3e6f5f91741370e2325b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1.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.1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5691c6868a2f13efeff09d8263645d8459a6b03cad65500063f250642bd27412
MD5 c66227da8459c0cc5954fd672a48bf82
BLAKE2b-256 63d8befa5d96d461c8bea9dd709ec461c344bb3d6ed9515268df455fd628e7fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 24b2f12d87413c3f8d174e2389d8cf5a6c666c992a9c43b0e0b812a14f3229b8
MD5 491344f049d6393e69f2f3786a87f976
BLAKE2b-256 754ab60ecaee870aecc122360ccb6e21eea73b675ba5df06f4b921761dc284bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dabf73a3099f3c96cd72a5ae20fded53e02404975a27b17570e48c236890429
MD5 060d25af535d96e3807c8f4b29d411e7
BLAKE2b-256 6525f772b0ca3dcaf44185978d08a9f6450fa333f5f07cf0aed4f79e92befdcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32461e353bc4e44f6ecd5c6abc3ce6f132b483d4ccf973bca753fc7ceb708293
MD5 5f2758cb6a7c04339c0fce7d468bd821
BLAKE2b-256 6524901f824d881d5e4109438ae8fce184467cb995f6b5ac22613aa9b8787184

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56f36ef2805f3714be7e685c1ded5217a24368adb9131d6db78c53fe00428b8c
MD5 c6d9b6f53ff73c895d541b7057ec348a
BLAKE2b-256 ecc0f9eb27dde13f242b284449f49d3ddc584acda54285c04fdb734742380fb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9aac39cb7380e3c104d6deadf4687439d0489beeede62de5fbca82c527f0ad72
MD5 58cb14834da7bde416560612126a9403
BLAKE2b-256 44757aa452de96ac0a65a48e560fc7d315fabc250ba201a0a6b89b990593c05b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57a1ba8ec3fdc8053f2526201bc529c8b478167f4c623e79a98ea8f8605a3650
MD5 7d69da1a429b0bea4b698aafa6d0a875
BLAKE2b-256 7a076ac895df5a78d2833ce3c86aafd73d845440d08fb3facf2c53b5fc0541d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 612717da5aec3ff4537b6ca8614035fe412a6ae9911a8dbcc053585c41f5a2b1
MD5 fa6f52b280ff6e2a4b24ec930871d182
BLAKE2b-256 141092ddd0856c57ff0f678538412e034364007171fef894f95b9ba514972a50

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4bd975405f6c6c3c30231c156111bdc1e9286bf15d75f403a17064114cd97d93
MD5 f465410139c4abe0f320e761ff900a55
BLAKE2b-256 394fe89077df57ebefbe575184aefb3bc2c3d72c5e72c26aaa7350221c54ae01

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d2a7885cf92a0e6df73cd365fd3ee080e56cc1c84203054d272735f3e6df0789
MD5 d19e035434012ce9a0ee160ce9ce4d97
BLAKE2b-256 d8c7868bb9c32927bc95392e21394062dd0897c38a96dd4f837295a3bb5c0337

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5595a7f68795774da5b563c6104af28181a2e1d487885643646713e68f1ca010
MD5 8c711d6acc0684b9af0314f889ecbed4
BLAKE2b-256 cea519c1a2eb42277eda5dce63e95d9e8af903d06443793038cdf7eb072bba12

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43dfba7f8c3176e9d00b07001cc70412a5ad139b9a656832f95706c8eef6b603
MD5 81c584f289ed4a48f5beab9ffa9b4d59
BLAKE2b-256 0c43f787862ff9ac0342ccb157e4edd1dd81f95cf067d99711b3265aa2c8fd9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eec23eac163c8f1f46f089bf235349ac0834cc5b7e71426bea27be453aeb6d65
MD5 87e2f51206aa5c1d206d501c01d68cf2
BLAKE2b-256 3f41f51c9df2e119d0d8c05f06be6c1d53cbc76a495e2dadef67989588fe44b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 356a2cb2a7b3ee34029b779c70cd92c56c93e1802de0cad2902f35a33f21bf89
MD5 f9c81a7cd24c8215fac23b6203880330
BLAKE2b-256 cda3bf3bf5dabeea498adbfe87675f4f0556ece978c9b8ca800c71d891e9e21d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b44f6b4664b74748feafd44ac8f214120dbdd0162be96a404bec509889649db
MD5 15912de3d2e80220051bc25496bd9c0e
BLAKE2b-256 a940cdf62415601b69bd485a091244f6144a94f80e9952ad52cbe9b69f57f325

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 081df2667ca39f07bfe4559987dc575fba5f2a1b2b3dd284848d8257dbc50414
MD5 654784be7bc1ddf401f30446f9a574d8
BLAKE2b-256 d52eb948ee37fbf3caf97f223aab93c3f67c6236e3445b3e8bf853680ce36e19

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ac5554547a7162d3b8c92b0dfffc8f7c9022e173c8c304291ca5f99ed103aaa1
MD5 b903aca5f834c0030066856735d6ca0a
BLAKE2b-256 33afdcea76a4c05487f80e842c1595590d9fc69ea5ed655189a7f9a8a3a974b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8c757429003d5640ee522f6f866791250d087af262a84d9bf6bd9697831c7868
MD5 d2b39512d93a204e7c524fed1839d835
BLAKE2b-256 2cc2e0ebdcbeb645f8d523f38adbcbccb1e97bcb75d989c61d166d1ce0c7f6fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4934ac1bb6dde9e58ad17492e68f40ffeadced05939672a6a9a5a9d385923316
MD5 47812b19a0fa25eff1963f7788617704
BLAKE2b-256 1ab2a86bdc267e3582f298f4876794e8bcd90b59abb2822a56665e90816a49dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30a715227fc23c521d1d3f5356ce13287c20b05eed088e0af4080e8b12609291
MD5 069fb4d5bcdd09b312702bab4d2566c6
BLAKE2b-256 f4475e00b0406fe7928f876426d27d91857824eefdb515e386549e61c3e2f254

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08f5c8c47b9a68d6f02732aa358a533394a8d57f905403bc52d434577872b41c
MD5 b202de7c2a155193f55c1d2c25a19155
BLAKE2b-256 27b582ed7fbf6fa65189f524312b0707ce46118ba837cccf4bc787c07ab6c975

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c68c6c23571d35fd8c6a6c8800adf6d0ce64a6ff16584ab1f72bf06c53572d87
MD5 03e9d0c1cf34fcc00467e8100aee96b2
BLAKE2b-256 46de91d11f6c36fe532ae3648b331cf6d2bb446df8681f5e3a3ab62172d80b94

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47b01469722ffa52cb2ae85fc573d60cdf45ef99a2bdd2cd04ca977592270c32
MD5 9ecb8d1dbccfc22e6d98c2b9984b0f18
BLAKE2b-256 6e597c8b7d5f3510628249924220095bc649ca1a1a9d448f3766b05b450db6f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4ea65bdf6f3eab9eb5f2829daa9f2dd3ec616de1daead8c493c5b701f957fced
MD5 206b9143e399a8b31fe33fb9fd00c4a5
BLAKE2b-256 995b86b2bf42db9d5b72b36ebc0b205705b1f86666a5406150899ff2229632ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8fd25e42f62eb89e92eb15e5a34f80d9efbbe10580445a8e6db17fa16af10607
MD5 19163c9e6ea6a81d628e7fc6f258a7cc
BLAKE2b-256 c498d6c65f19dd5ef175e750e231674e6f81a07b3a470edbe5973d0549230f18

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b21f7958fe489a3682df11ee353ae40a4869fae0755b01e6a29e9e78bc96d8c6
MD5 3ec7e5e52efacd377f95ec4c9496d2e2
BLAKE2b-256 dc09ab57f4f36bb2934d098cf3e4bb59193bea20362f3b1d0d085a828189c681

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a373da985bd5a495f1976fd6042f3a8189db102f31a7f57a9f4e48857a05edaa
MD5 b754aefe17881440a3c1a89db27f505f
BLAKE2b-256 b74cbea3035bbd4bbb24972111ee31a500575c90f9ac51a1cbf369a0ebdc0244

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58f884497e0fbe3dbcea76d05052c4956fd672f61d46e8930f05e431d5440f46
MD5 d842979428fbcba6fc6871a45d3f3796
BLAKE2b-256 dd39c2c531401e058c708d30f50d491881b8f100b2852131157d86251995df38

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e70bb547df9a07800dd70a7240c7f9bd0e9641e6e2b3b42da278ed53264c62c8
MD5 966a256447a5bd26280ed2feeec4c967
BLAKE2b-256 e1466e3e6da25f44ddeee2c13374917a07488cf0b7beb262dfbd5bc8b2913708

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c25dab3b55b062a674a6741777d83b3e372069cc963e6121b8aae8c83145cb8
MD5 c554b7a7ca4bda1a189720f435a9944e
BLAKE2b-256 7d31693787c9b10ab43fe48687ec1b6fec2e582b7c33833824a83a72356f8927

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 069ba98eba865d1890b70919c93e8fc24a34ecdc76a2539177e064215c958116
MD5 1ef7bc0a17ce1ecd35063ab04746fc35
BLAKE2b-256 c144ca57c12eb20650efaccddc579c2bc2d0db1c9a13e23c4de9fa6d7cfefd8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a9fe3f1a658a476a19eb2d82db09e87fa7827ee3f6ff89fd3f36a2da076e1519
MD5 61b1e962d8c0b3ad12d4ac5ae0279850
BLAKE2b-256 657cd97e782f7ddb9196369802feed26312ff97db85ee1c031c6518b6365dc18

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2609e7a1164aed637603146dad86fc32fd6a6f2f98d37fd05e0475462f0234fa
MD5 7381a732fc6850db274b918126dfeb3c
BLAKE2b-256 2ef334c1bafb00b78713c148524c95dc7561883c7dfa735ea98ae8968a8c5519

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 20bc8be533f0618424199232894b4995642d3722d95c6f5b54c7cafa637dd9ac
MD5 35a4594c3169557349411fbe2fa6bd83
BLAKE2b-256 fabe16e09ba27bf7b2edbaed69aff4d14b72fa85dd75440a477da326c11751a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1971b51c4f05cd07388d928039ef00b1e6714277af3e620e2297b8cd5beadd91
MD5 aad327437cbc3b90ab012cf32011a2d1
BLAKE2b-256 f89bd5ba5a357346b856762b202ab934d95ae2f98777e515166158c9b6b70300

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f73eda750e9a3367cd8467baaa65d6c636a2faac1173aa15c5b17e4af0ea813
MD5 da00730cf888f83ca4651d7d04ce99df
BLAKE2b-256 d2d9ff02c200229966cb98e51e0cc0d14c926f496787d50cb0183add90d60730

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b66ae96834e219ea84f93a45ea09d20b066b462a01dbb4414de1ed26c5b6f032
MD5 53b9e2f0f624ede3df5ef3000782a9a2
BLAKE2b-256 522f67d11a373377a60d41657424b20660b31eb7d8805af7d13f6e2d7bb9efb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7a1528cb1b7974055d9004e023fa3b6a09373f93a6984777aad262c4b94b298
MD5 ca9af26d1cac25e8ff5595633e9e9fb5
BLAKE2b-256 fdd66940f8e6efb32eee35f8f41db8490a82b1bc55d68bbb81cc87158e893828

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 507d60ae4e06eb8140ad259d4754acc77ad11db304d300124d3651030dc1d21a
MD5 b09dac4890fa14a31c8a8acc2405078f
BLAKE2b-256 a6fe9adebed225e96d57d9727bfd1d5285b328744da17b0240471e623ce1d6a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd2a29f3863c3416fbad1ec063531bdbec062455832b38b86e57e5d28435bc26
MD5 60d9d746f0c283976ce7ae7be1c84354
BLAKE2b-256 37e81fbd76b41996b00a432593bceae84581840e8b9cf88ca1154899df6a5b10

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f65179610c4914ce58de960c200db04f2a1f88ca7d6d7273c537e38b92adb95a
MD5 fd4649d60ea71b8c49df8ae450018bb3
BLAKE2b-256 de0183b7afe39ea16b4dacfb00a20c4b4be1ffa93abf289e473b7b8a60977ba4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ddb6fa60ca086ed1329bc5a658a9ecca59a510310245fac82c6281f52b014d7a
MD5 9bb84dfe449f6823a4b6c8270062e5a6
BLAKE2b-256 9aca3d0d871364ada8535fc033b00e87bd2aa3deca6af9e8bce40e741511a69a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4742b8d9c9d9ed6a80b6dfef4ab4062c5f4854fc07f7eb2fa6a94fd0a52fec2b
MD5 e2cd167206692453061b2d94323c06d5
BLAKE2b-256 9a5a5a7d2fbd5301edc522de396f73e3ffde8889a299df26aec1abbab05f8701

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2b576c707147433f88b8e4cacf99da85abcccb2327226007ad27fce80c59180
MD5 0397f4f1cfb93667fb3f88eb89e920a5
BLAKE2b-256 c0b5af8e92ad413d9e5cba3f8d9173c004823fdd95c046dd6fd42479791f814e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b469c9226da29abd48450980ae3183b99a66f202c49be2ab6065812c42b2004
MD5 d8d4e43759ce1b52f2ec213f21358a0a
BLAKE2b-256 992f7c079453cdcd17335001b0ffb41dfdc34d9a251af897f82dfe8de3eb2e4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2d36b5f4abd5a9fc95488604ddcf6fbdba1379021f356c524f3fb6dd6ba0e4e
MD5 3dff725ce96e06ff45e7fb0d94f3c9c0
BLAKE2b-256 5350ea52f4f3d4067851cdf66df810d574be7910023e131a17582a293eed7073

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1916cc4af8159efc90d71d40217bef9ce73bd0ed5246df1ec7c2b214e0f917fa
MD5 4abcadbbb21d8c3038f3651c53507460
BLAKE2b-256 7f61124fbe21b970b24e45fec5082d449cace9e09cd5d8350cfa1296a124f224

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dbeaver_creds-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01d4c6af9aef9f93a5ef4414a978aa2aabe704c3a1e5af5c81f5c3783520ef1d
MD5 deadb8272671628ed0adec6f85fff86f
BLAKE2b-256 e8ac77998c3a2a6c3ea8e4544cf7840425855797098d107c00d2c102d23807f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbeaver_creds-0.1.1-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