Skip to main content

Fast RFC 6238-compliant TOTP implementation

Project description

totp-rs

Fast RFC 6238-compliant TOTP implementation.

Install

pip install totp-rs

Usage

from totp_rs import totp_generate, totp_verify

secret_b32 = "JBSWY3DPEHPK3PXP"

code = totp_generate(secret_b32)

assert totp_verify(secret_b32, code)

Benchmarks

See benchmark.py.

Benchmarks use window=1 (typical drift tolerance).

Linux x86_64, CPython 3.14, pyperf --rigorous:

+-----------------+---------------+-------------+
| Benchmark       | totp-rs 1.0.0 | pyotp 2.9.0 |
+-----------------+---------------+-------------+
| generate        |      456.6 ns |   17.191 µs |
| verify ok       |      436.7 ns |   35.315 µs |
| verify prev ok  |      518.5 ns |   17.655 µs |
| verify bad      |      598.9 ns |   53.279 µs |
+-----------------+---------------+-------------+

+-----------------+------------------+
| Benchmark       | Speedup vs pyotp |
+-----------------+------------------+
| generate        |           37.65x |
| verify ok       |           80.87x |
| verify prev ok  |           34.05x |
| verify bad      |           88.96x |
+-----------------+------------------+

Notes

  • Implements RFC 6238 TOTP (HOTP + time counter).
  • Constant-time code comparison.
  • Uses RustCrypto implementations for HMAC/SHA-1/SHA-2.

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

totp_rs-1.0.0.tar.gz (11.3 kB view details)

Uploaded Source

Built Distributions

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

totp_rs-1.0.0-pp311-pypy311_pp73-win_amd64.whl (134.3 kB view details)

Uploaded PyPyWindows x86-64

totp_rs-1.0.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (241.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

totp_rs-1.0.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (235.1 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

totp_rs-1.0.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl (230.0 kB view details)

Uploaded PyPymacOS 11.0+ x86-64

totp_rs-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (212.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

totp_rs-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (317.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

totp_rs-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (296.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

totp_rs-1.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl (237.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

totp_rs-1.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl (230.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

totp_rs-1.0.0-cp314-cp314t-macosx_11_0_x86_64.whl (225.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

totp_rs-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (208.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

totp_rs-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (318.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

totp_rs-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (296.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

totp_rs-1.0.0-cp314-cp314-manylinux_2_28_x86_64.whl (238.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

totp_rs-1.0.0-cp314-cp314-manylinux_2_28_aarch64.whl (231.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

totp_rs-1.0.0-cp314-cp314-macosx_11_0_x86_64.whl (227.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

totp_rs-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (210.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

totp_rs-1.0.0-cp313-cp313t-win_amd64.whl (129.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

totp_rs-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl (318.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

totp_rs-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl (296.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

totp_rs-1.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl (237.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

totp_rs-1.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl (230.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

totp_rs-1.0.0-cp313-cp313t-macosx_11_0_x86_64.whl (226.2 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ x86-64

totp_rs-1.0.0-cp313-cp313t-macosx_11_0_arm64.whl (209.0 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

totp_rs-1.0.0-cp313-cp313-win_amd64.whl (131.0 kB view details)

Uploaded CPython 3.13Windows x86-64

totp_rs-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (319.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

totp_rs-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (296.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

totp_rs-1.0.0-cp313-cp313-manylinux_2_28_x86_64.whl (238.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

totp_rs-1.0.0-cp313-cp313-manylinux_2_28_aarch64.whl (232.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

totp_rs-1.0.0-cp313-cp313-macosx_11_0_x86_64.whl (228.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

totp_rs-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (211.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

totp_rs-1.0.0-cp312-cp312-win_amd64.whl (130.9 kB view details)

Uploaded CPython 3.12Windows x86-64

totp_rs-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (319.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

totp_rs-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (296.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

totp_rs-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl (238.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

totp_rs-1.0.0-cp312-cp312-manylinux_2_28_aarch64.whl (231.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

totp_rs-1.0.0-cp312-cp312-macosx_11_0_x86_64.whl (228.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

totp_rs-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (211.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

totp_rs-1.0.0-cp311-cp311-win_amd64.whl (133.6 kB view details)

Uploaded CPython 3.11Windows x86-64

totp_rs-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (321.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

totp_rs-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (299.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

totp_rs-1.0.0-cp311-cp311-manylinux_2_28_x86_64.whl (241.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

totp_rs-1.0.0-cp311-cp311-manylinux_2_28_aarch64.whl (234.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

totp_rs-1.0.0-cp311-cp311-macosx_11_0_x86_64.whl (229.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

totp_rs-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (211.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

totp_rs-1.0.0-cp310-cp310-win_amd64.whl (133.9 kB view details)

Uploaded CPython 3.10Windows x86-64

totp_rs-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (321.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

totp_rs-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (299.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

totp_rs-1.0.0-cp310-cp310-manylinux_2_28_x86_64.whl (241.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

totp_rs-1.0.0-cp310-cp310-manylinux_2_28_aarch64.whl (234.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

totp_rs-1.0.0-cp310-cp310-macosx_11_0_x86_64.whl (229.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

totp_rs-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (212.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

totp_rs-1.0.0-cp39-cp39-win_amd64.whl (134.7 kB view details)

Uploaded CPython 3.9Windows x86-64

totp_rs-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (322.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

totp_rs-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (300.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

totp_rs-1.0.0-cp39-cp39-manylinux_2_28_x86_64.whl (242.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

totp_rs-1.0.0-cp39-cp39-manylinux_2_28_aarch64.whl (235.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

totp_rs-1.0.0-cp39-cp39-macosx_11_0_x86_64.whl (231.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

totp_rs-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (213.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file totp_rs-1.0.0.tar.gz.

File metadata

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

File hashes

Hashes for totp_rs-1.0.0.tar.gz
Algorithm Hash digest
SHA256 d4a8d648425dc036e3fe66a3c69261fbd6a0ff562f39dbbc6aa89f121ebc85e0
MD5 be084c3a5f891346712f85b2ee0d4190
BLAKE2b-256 1a9b1873edd731586c9b4574db8b964121cb10b3fde9fe036940bf64b38e3da3

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0.tar.gz:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 af6d313d3206566220d893964868a9ec4d7fc5617ecfbe3bec2b7fc102f84411
MD5 aff449828269dd10dfd39c0ee672c593
BLAKE2b-256 1073d4cff9cb7b22971248ed1383ef0eb706ad271f6517c8bb5508af30232879

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94db0bf255ac1695d8e2c39ddb6725e7cd804b6310ab1560efbccafb85ec9b49
MD5 980bea51406e8b4b84f70c6fd78a205f
BLAKE2b-256 dbc6c8ad87cf0cf87d3e5f3218a865036dea8fd0cb1a65a91b724cead75d1d99

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5eca5cd50a694aa94d1cd94824187a39dd6b12f92947736814868968453e142
MD5 47af3b30b9b99672bfacd7b64ffef6aa
BLAKE2b-256 fe8583e1c11aacf8dbb0ae0370a8f8469e2b66502962bd561a2bf3ffc486d172

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6d300ad86095857876cc17f3ad7398f5de451c38afcb315f27e22307cbc9b9ab
MD5 043ca1b574896a2c07016dfd1444d808
BLAKE2b-256 64b6f14261378dd362b674bdd37d1e485f85afaf0868b3cd77198b4a96794ae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4314e701d824daa96ed68c978b58952cbd36568d50bc9b486a49ad3a3b666907
MD5 474c77d0c549b849a7b9d4368084e59c
BLAKE2b-256 0821599469f6584f4f046fa051e871b356ef0487ef3decea623d66d8e5464341

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c8951a9f8898243d3bf1adc52b782579ac00a95e3f0cffd99413f2bc2d858bd
MD5 3b7f501427b08d1aaa3e543cfa48705d
BLAKE2b-256 0644606aab2a00c487efc82f3b49c43eb62a911f557a0b764ad33e48afbdf092

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18b57f0374cf5300ac63f4fbe57eef99595d8929a3d11cd08a5d3df9a48d4e45
MD5 e0e300ac679d5e4e9c56aef78fead7ff
BLAKE2b-256 3b30b0559f9ab355b9bcfbc731c81f2b87d028a2a1a03332b1f386680fd98a52

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2852ea8e288cfe574190573b55885192e757f0d45ea1205ea57f4cea2d4732ba
MD5 fbcdf88a6ab37c7849b66735ad82b5f6
BLAKE2b-256 62eaaf8feddbb34b79e218fa19ee735ba7ca163d269de13fb7da7ef5720f2f7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7475ddabe9fe5ad3b31216f2f58f133615d0da6da80f0798bd5140c4987c2686
MD5 da0985eda0fa743c8bc347ff33f9f14c
BLAKE2b-256 447d5d374371078d01602a39534caf896bbc9394677bcac19302a2fd10194c3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2677287acb2e937928bb98cc1d2d6682565a802de4f9a52bf621c3e96a2c8ab4
MD5 984f30d5ac2efdc75f15f29cfaf1ccaa
BLAKE2b-256 5e75200d270da7809f8eb7789849467f7475e95f2650973c80dbc5e112c97425

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp314-cp314t-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 669ff09d0ff5982ad9821c30c10944f888e611192818db6d8cb38a624515ddd1
MD5 1f0cea37f41e8bd1dfe21f80c0b7c84e
BLAKE2b-256 7b9ab5cb45c10923b221fa1e4274b89ddbabc40c437e0203c4ab43d853fe5515

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff04f56a4888d8d9abc2276864ed3342c591c83eabb041f61c13bbcbc9e9736d
MD5 6c9196c1513102d22c5a755fe45add90
BLAKE2b-256 27e94eb96812694ff78fd735a16fd3d60e5d4e68b3634642155338c7969aa0ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92f1bbdc853b9dcf56a9ca733db8de168896436f0ed5b71165158c0f0ad35e6a
MD5 cea161f7eb1210ef2e8597d7cfc7f0de
BLAKE2b-256 a330b9ea5443405ab258dbdaf4c4922b4fc43930559665669eb6ed82f222afb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8958165958d77aa039ad2d68c84e922a66bdc4a655e13e35f7006294ec8afef0
MD5 ae05f9a88d65c3c8385b904b82f5665c
BLAKE2b-256 a4f80dee5cbb2a16aae2937ba07245489603add098dafec73a4078e58015da8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d0ea0658fa85fa15c14d1f1c448ecd895eca651eb701794f1664f7677082ff0
MD5 a3162a27a95dc29302993a6ef7028749
BLAKE2b-256 41f528b283b7ffc64c79dd9fb8a7dff617d86c1ed025af94989dcf2067fe0304

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f80bc04e1e1ce183765ecc38d7c612e42a95c9538e5e725ff5f6b3da2c8af0a5
MD5 a907359714f494d4d55b7321499d3ab1
BLAKE2b-256 7f899dc126142125deb564cfc6eea84e86823fca229424fa66c6b6e359f94c97

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp314-cp314-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6b1d4a54f39419a7f7fb34a62ad8ec5d622b29273309b07253a0364e9c446b5
MD5 24d1537b8b8761a159696e703e3d0615
BLAKE2b-256 ff7a74343b6ff7ccbdd962bb23036cbc74ef9ff0e72b3bf2d5a009f6ce18927a

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: totp_rs-1.0.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 129.6 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 1e407902d19aa69b826bec9c1c0d14df04a8ef77bcb9ef0b238cd268e01e37b7
MD5 e35120ad6d0d45390cdf8ee083512741
BLAKE2b-256 9a45c72f154156abad15045e63336981e3eb5a8e6641a890a6d3d0243a85329a

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313t-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69bc7c21f5fded544bb9abc91d227085d0fc8c9a32afadfdee7f4c8d45afcdfa
MD5 494f5237396eff9d2fe87754b2f02010
BLAKE2b-256 0bcd8d667b05607bbb80be4b75120b48a6ff54186c2e6d6c522ea19f1260b8a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c6954f206774b7e828ec641a744dd9608138bd1a026741fe72ad18f494c350f
MD5 0784db14b9d1d8255a09116e420d9631
BLAKE2b-256 b27ba1975a7b8c49bee641ad6458a5b7eacaef48b1c2d247002bbd44b4a49c6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ebc385f40535ad10276b9b16a208b096c8a193d14c612b982edece5a5873ebcb
MD5 d495114cc0f077f9144d5747b76950f0
BLAKE2b-256 00ea42a5f5ab9de676c172303c1933bf51fd34dd82a319e8f5d40d36b68a7b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69e8e2ed2b69b215e20261c84fbaed4099060f787a06a2e1bac7ceb69970c11a
MD5 9e08d26bf65b076d535f996105c16e34
BLAKE2b-256 b2ab4199a087ad078ce4bc99319f59d41b6b53af92edff506db4ca010b360bd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d40385bd97c25b231354dc48bd70a89a6d9f8b81ea62cd17e37445d44b007e34
MD5 8089d6d1639779a425e2d96e3eb728ae
BLAKE2b-256 a03ab6dcafa10550ea132f6a1595427087881a1854c306cb523d93a498ec47d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313t-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5207b84744d735b597d29cd2ab613f12f5a08b74a76a31e9add7ac9f68f548d9
MD5 105126be96485101e2bf28055053a74f
BLAKE2b-256 b44046641ff15fa12cfd12af0d470ab6ed9495406909964f0b7589d14980dd8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: totp_rs-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 131.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 92e4bd7e2a947540c42993c82468aa0f48c4846924db314c6c4dc14e24c840e7
MD5 77b5d0b2da873bb7aac57d1b43d521da
BLAKE2b-256 55f5d4b585a8ca9cd4c9a4f5ae2e1f8856f0dca676b51eb4fd80bb59727f09ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a65b6419f4e7c767bc8de3db6497a5b0cdd7cb1faad7b8f47e5e09223741c57e
MD5 c959c2a6a522424940ee8084e31e9fda
BLAKE2b-256 bab9a80cf496e0489d9b109876d40cdd05201a8be59d8452e09472719ff85e7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e566d9fa8393b08850c242e5b46f5a9f8eba6e813dcf70a483a361146c47d006
MD5 dcca7ecb3ebecb8a8a9bef056b252017
BLAKE2b-256 2fc810c92173b4a36c5be062261b71b4959b0dc13367917d7c4ace98916ba9bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc415d97100c45ace113c31769061baa02b67509faf5b2afb84932425885db0e
MD5 92bf4b108ca29c2404e5ec1f428e6a54
BLAKE2b-256 6b08655e93dda980db8b2b5cb27afbcd6395600c1c3a2aab345a38bdcf97f6cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df249cd11a66ac496d6fad82ea5125d73b71b71e1926ba037fc8c6d9d6eeec7b
MD5 a0842d11cc7845ca9a94d99061675896
BLAKE2b-256 ac30f8e6256a8a0c5b1d9042a0ef23de5c636ac067117f38cc881c6fb763d4c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a96e35ec4946c2dffa0bccef67cac7404c6345cc617e2e16e9e9b255b336e77b
MD5 6ce5aa0502f09b1884d4f927129235ac
BLAKE2b-256 924441dace633998920545a67d890a8e7670a93df37c053c42899908d3718eb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8115d2f1245669a97612212efde34a68709d8d40c7ffbed7cc930d55775ca284
MD5 11342000349a4a8693a060fefb5697b2
BLAKE2b-256 35de3cf512f70241811e6ed46385cee4dac50e6495e029204f528502a04f9230

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: totp_rs-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 130.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for totp_rs-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 19ff6dcc7fc3ceb9b61ab92675db0feeed5039ecb465e44feb40ababc88f859b
MD5 91e0e1d9f0b06650eb292f11e2fc0a9d
BLAKE2b-256 cb246c26e6fcc656c5704c951ecbd5687cce49b9ac09713c146da127417b151f

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb751a89331fe9d6dd7cf889f55798d974535311c8dc073a414b5ffdfeacf275
MD5 e4b13b5ecee8273c0cc9f6eac339f5c0
BLAKE2b-256 deeac2674240b4291eae0766a49977df1d4ebbae470e7a472033b7bbe5e2274e

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04006c0522a75590450603fbab49fc4096dd98f14106e96366b686dd924ccc1d
MD5 7363d9e80020efd109ee30d79d5bfce4
BLAKE2b-256 5bdb39a97b4f5438dff79b594bb35f6f88b4f1ad1f5eaf55301cfa39f3c2b85d

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc3e61100bd5b325da2e023d890cb369da6ed6283b9ba2b023b883cb993ac1f5
MD5 1814caa5eefddc851522ee36ace89af6
BLAKE2b-256 06bbe9e2164ab1f11042af54915fccbc91ca4d307f097b73a58a6eef7b97271f

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ccbef68d5a63d3928057d915da68e66fd805e30d70953485e49ab1d44b305ac
MD5 adf2ae76c63cba2c17cb8011f0a8daaa
BLAKE2b-256 81e96b6477413de3d37ed311a07d873b6d86e2d72847255c673106388ff6c6c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 679e548b68ad826f79ed77e2855c432f79fdb65984003231d10744e865f0af99
MD5 1e40f93fb3f5a82b8828f1f48ddb437a
BLAKE2b-256 059a0b1d0bf342c5d048e1fc14b7331819328414fbd8bbe175e4a77c24a3a0d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0845cb0be2ed12dd1eb68d0253ffe9ed63d94818719e0098c433c80cb0adb581
MD5 7be0cb921d004b86534038c60b0497c5
BLAKE2b-256 c8cac05d7247b87c2c96a267bc2b9663263332bc5e14bdfd3fd8ba584892c944

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: totp_rs-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 133.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for totp_rs-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 08ef37f17db6b6a9a83814fc69faf09ef2865f2fdbb8fc23d655200b65a5d9c5
MD5 635ec0a11166f7fb6276e348ac2e0399
BLAKE2b-256 e41e22549a6ef3a54a3a80be6526793a6f8e52cab970657724c120df0edf89b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bc1cb56101df87ddd03c712220514ca5a0342cf05c6a4b7c719789f42ce93b0
MD5 b505e1820cccfeac41472fed831f4ffc
BLAKE2b-256 79855cb832a8fb5fc0d282ad5d77bd35191747008c11a4f3775a91b62c73a4e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f967d58b75bbf8b6d94395b24f109a49a90624a90d3092a56e8fc8691b94bf5a
MD5 0ca4581f2c8f6e761dda9c440355cedf
BLAKE2b-256 e6118f0bf63ae5210399d842410a9581d941766ddd35839d6d1d24f0e8cd662f

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e6920b2158dff3d16d5e963526b8518fa83f4c32fdd070240d331e06338a30b
MD5 cdfc816f65d7060a9231172f7a673c61
BLAKE2b-256 fa296d04ec91ebf1584938d33eea684bf1227978ccf7e1415d09a134f4b17994

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 240912c602c72351a6aac509a6b0e1153ac7830bdcbd9d59b3d4883f547ccc6b
MD5 174507e6e4109033cdef2ea1d5ddb403
BLAKE2b-256 72c916440cd26faa1330cdc5b8ce2d74d72babe210e467accbf722374cb20d43

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4a7353d394ce23cd132a93b7b6de5db72d1a3768fc7da0f4cec9e199960f0157
MD5 ca5184905df35c39bf7938f086aee8d4
BLAKE2b-256 c6ba2288f1ca6dd3d6981517f71aad9ed181fbfefee6f1da8e08e4fa19e6bf57

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34c689ac38eabf570899148260f216f72fe2ef287ac868db9afb693f0a256af6
MD5 c282ed65a523ca19069c9a260f79bf61
BLAKE2b-256 8615a8617dccea2dc026bb921ea83993deeeb13d441ea643c3e906f85499277f

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: totp_rs-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 133.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for totp_rs-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 de07180f40dc3875f339eb07c7ebef419e03d203c587c09d173ef1d1447741d9
MD5 129110aeb0022704d5ba28b2c983c793
BLAKE2b-256 3c4643b4242f5e4f104d36b4fbc5625db534e00ce06d029ebc2f43afeb76470e

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp310-cp310-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68b98e8506807694b1f037e29602be9a8362ee993e66bb5e6d28061439a2219b
MD5 d29d4ea047fd50465492834ab456c9cd
BLAKE2b-256 c22bd5ebb4c71481f9d3f0a6876b0d3868d4ede92734db4fa115babbd551c869

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4256cb8048a26d813c1dd929867405f78fcdfd330daebe28d11f727fea626e75
MD5 b2d0800938ee67de52c3eadf39c2778c
BLAKE2b-256 67e337c78f221f81f974f24dcdcaaa73f5da53a15fb959a52b1272285f793f40

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81ddc2488c4c8701432ec0668fec61c31b5a85d57707ca3b7c3e209b3e8decb9
MD5 15bd40e04cb5b18f60f7d5053cefc427
BLAKE2b-256 6c03b569e2eb4f764cfbaae2c3bc8592030a1baaaddcd62023da7ed5104fbe93

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d5a37e18c14e4f29bdafef448b5ef2819bd0fced5e18189b7add83544c46e85
MD5 82dcaa9165882e0ddd692656316db03f
BLAKE2b-256 be6ab32e88c081d146700c66d0866f690d96730d9ad7f51804f7d5de49c1dd93

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ecd535b49b6cf1fc27cecb223bd667f6d0178f534f5761391ed32c976fb5b72a
MD5 ee44d76c6a95c36a17d03aaf06c8d411
BLAKE2b-256 ab34b29684c9e5b56fad313ba698a882317d0b0b3c6fcf5b144dc3401b34df31

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ccf9c1a542f5e7fdfdbb525a62b88bfa812fdaf2df21255776227aac446218b
MD5 78a0e4ca5419efba8b71986671c1e54c
BLAKE2b-256 3c5f09aeaca2fd68c07bb533d855f9746b775086ca945f9d92db0ffe741471ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: totp_rs-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 134.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for totp_rs-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 050da5db80315280ffe31eff212dc3b73d9b5db1e09fa488b500490c22002c13
MD5 ed60bbc453c59f2eaed4099e0baa24c5
BLAKE2b-256 04a64b5a7de32ff03031638cad6693bfea13062eee35514856b1645600c73892

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp39-cp39-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b612a5512ceaa3f69406a4f6d2949e19154ab7c3deacc8bd0aa4a634ff6c7f4
MD5 d5931c14b5815125c4bae898ab8cf207
BLAKE2b-256 2134eb47c2ce14dde45040f4e194398d05c06df8a252d3e5c1baf1a0b6ac5569

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da69aa044f95d13cbb1f92e1aaec966d3989ab3352cb59c156ccb92f82887380
MD5 b1e5022e94070d809f6d5d44b20c9c5d
BLAKE2b-256 f247f5a7d66b47d07c344cfc2306b02ede7ec54910998170a5180fd4c6f86a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca801fc02790fad2938b809732b86c50c36de49d0eaca95a7437a22ad984c2c0
MD5 a20464d10782bb80fa4c579980cd0ae5
BLAKE2b-256 f3f6356654b7a20343a00df655d7e49c844777df533c8ce492bab603ad89b4f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf8ba4a4c7131f8f6ab73b0c70542521d2fb82b084c780b848e98d1957332cd6
MD5 47b7b1c1907eecca36036ff32cfbeb89
BLAKE2b-256 c750aa01d39429dfe16726691ac4ce391df8d20e2778972f71efaed5659c1a4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5e0a89886a7716b41ddd066f6101698e1607db44927e9b4877880cf1380f2933
MD5 c826af2f69bbdd716a75a8c5985a5d03
BLAKE2b-256 540b21dbfd67aa54549b5274af232522f589dc18d16e2722dbbc5f0763c7fd7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp39-cp39-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file totp_rs-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for totp_rs-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a48c21106755a189472d0a9be68302d2e87b11e824e9ba7d8836a277fbcac15
MD5 41d66d127960c4d10985fb582f00a796
BLAKE2b-256 50b60ebd086ee583f5e4a9ba1d9a6956b09dd182f98cb9e08b86ba1941ccdd5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for totp_rs-1.0.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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