Python bindings for abcrypt
Project description
Python Bindings for abcrypt
abcrypt-py is the Python bindings for the abcrypt
crate.
Usage
Installation
To install this library:
pip install abcrypt-py
Example
from typing import Final
import abcrypt_py
DATA: Final[bytes] = b"Hello, world!\n"
PASSPHRASE: Final[bytes] = b"passphrase"
# Encrypt `DATA` using `PASSPHRASE`.
ciphertext = abcrypt_py.encrypt(DATA, PASSPHRASE)
assert ciphertext != DATA
# And extract the Argon2 parameters from it.
params = abcrypt_py.Params(ciphertext)
assert params.memory_cost == 19456
assert params.time_cost == 2
assert params.parallelism == 1
# And decrypt it back.
plaintext = abcrypt_py.decrypt(ciphertext, PASSPHRASE)
assert plaintext == DATA
Documentation
See the documentation for more details.
Minimum supported Rust version
The minimum supported Rust version (MSRV) of this library is v1.74.0.
Development
maturin is required for development of this library.
python3 -m venv venv
source venv/bin/activate
maturin develop
pip3 install abcrypt-py[test,dev]
Changelog
Please see CHANGELOG.adoc.
Contributing
Please see CONTRIBUTING.adoc.
License
Copyright © 2022–2024 Shun Sakai (see AUTHORS.adoc)
This library is distributed under the terms of either the Apache License 2.0 or the MIT License.
This project is compliant with version 3.0 of the REUSE Specification. See copyright notices of individual files for more details on copyright and licensing information.
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
Built Distributions
File details
Details for the file abcrypt_py-0.1.4.tar.gz
.
File metadata
- Download URL: abcrypt_py-0.1.4.tar.gz
- Upload date:
- Size: 35.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39a26de7330963ff4dcaa2b67631e1b813507e044cbd9ec6becba4b1112d9bb3 |
|
MD5 | 61c1ad79c52ace26297815675e4cb17b |
|
BLAKE2b-256 | ef8b072fd8669ac0178661557fb06bea0b29088bb60b8534feadff139951ab71 |
File details
Details for the file abcrypt_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 241.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bcd99f5ff10703cefbda03a1a55bb4ee96ee90eabb51a4780c6ce8dc1c077d85 |
|
MD5 | 4f83bdacef2bdbb761c537f7bcd388d8 |
|
BLAKE2b-256 | db1d4b78b94be5c5260bac05e2e456b708312600d5951b2d50b613f9d02092c2 |
File details
Details for the file abcrypt_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 220.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bdc8aa4d6686129fe36b0ccdb0831ce859f24db57bd4d7e82de54a6c07b4ef1b |
|
MD5 | 39cc16084cdc32702a7622ca34f995fb |
|
BLAKE2b-256 | 6823580df0e6692885e97075abbc8f4974fbe3a75f8a63ae4ad72fbf93451863 |
File details
Details for the file abcrypt_py-0.1.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 196.9 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29e341d9f586abdba6087b169d8aefa5930db1bcf92784645be8d4f08ef384a9 |
|
MD5 | 42a2189d7d29655979a397373039830a |
|
BLAKE2b-256 | bb7dc706c3533a3360cc7d8571cbd6cc9c227b88e42cdc4834aa4ace8505dcaf |
File details
Details for the file abcrypt_py-0.1.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 220.3 kB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f564e6e4d77f010f4a316fe2dfd9631a5a0fadb0da5087b7966813bc92d02c90 |
|
MD5 | 20467d74351a7b434809c6b25ea94c67 |
|
BLAKE2b-256 | 93d7ae8fc59e9ac47e0ec482fb9dfcf0ed62205b496cd890b1d0057931677585 |
File details
Details for the file abcrypt_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 241.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90b55ac677f5683e6590043412bbe88715ab838398191b3f9e2738da8db76ed9 |
|
MD5 | 522ad74e7309e516fbf8945b4a514818 |
|
BLAKE2b-256 | 3e3a0f00aca14d5ed300223decccf05d9fcc12d624aad4c184dde82109a8ec49 |
File details
Details for the file abcrypt_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 220.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a7e6da30df5a55ccfa6d74bbb01b035b792ac2c608dfdeb593d326ca4ffb19d |
|
MD5 | ebb7eda3c23d66da164fc9f41ce74a48 |
|
BLAKE2b-256 | cfa4eb278a464ad44f9a5a818fdce351b9f9a28e3f60d299c2c25fde6d108547 |
File details
Details for the file abcrypt_py-0.1.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 196.8 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee45c399a7c2fbce450196daebdaafdab6d034544661bb9dbd29a8f2a80e5642 |
|
MD5 | 1ad7110bd9c0d0f30bb7543b0dfe7697 |
|
BLAKE2b-256 | fe5a8dac1d484458cfa6df3afe8d53cd5effff8451e97d09b9d451605ca9eac6 |
File details
Details for the file abcrypt_py-0.1.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 220.3 kB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 197ab7a0ec1e3aee609af82d967580b406adf2e03a178684eab85ca179c836ee |
|
MD5 | 4d67f2525153fa0af25fcbc4d845d2f2 |
|
BLAKE2b-256 | d5e9e18ff111c0c7840d3caf786c32becd5f846aa3285795836e3f52f004aea3 |
File details
Details for the file abcrypt_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 241.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3db273060e47d0ee4647a255de4086ecf0a0bcf3e67fe4ffaec9c44e4f1dfca |
|
MD5 | 8744d7a160bdbabe60693488215b2e30 |
|
BLAKE2b-256 | 96015d0f65b399488759edf2785ae6d6cb8affd810eec43fcff611523df601f6 |
File details
Details for the file abcrypt_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 220.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc2cc2075a67814d88c2d5b22523f40fa890806c56fa597c5718406b5099a2de |
|
MD5 | 320294ba36950fc6fccf9ff5576491a2 |
|
BLAKE2b-256 | 66556ae9fd720d633296679ad42a0a3b0071974b6b9e0e9dd4103dea4cc3a187 |
File details
Details for the file abcrypt_py-0.1.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 197.2 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95b07a4fecb0761874ca76aecf194346571031900f473ba01d286bccdc4b7022 |
|
MD5 | 3add2b2a7fbff678a4bd6d49f5e541b2 |
|
BLAKE2b-256 | 263e5176e9c23f5818c7a5aa42d2e7c07c28c20f8e72c600f3c657a748383cdd |
File details
Details for the file abcrypt_py-0.1.4-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 220.5 kB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0687e035c7966199537554a71b4afea7d46c39dd680731cfd922f7c03768a86b |
|
MD5 | 2bc6ece7550ecf123b66227315514380 |
|
BLAKE2b-256 | 5d66043098792df3557b2da756c6887a26e26eaa06384eccc6e84515ee6815dc |
File details
Details for the file abcrypt_py-0.1.4-cp312-none-win_amd64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp312-none-win_amd64.whl
- Upload date:
- Size: 146.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75ec357b9d5bb0198b90a2fbf92b42a12039089b3cdba5f82be504c12ae73328 |
|
MD5 | 47edb452f567cb375f1015d7c362993a |
|
BLAKE2b-256 | c2b156501ad6b69990d08c33722212d86d558fa420268c7dc5523833bbea34d1 |
File details
Details for the file abcrypt_py-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 240.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76687f167cada5f0be9a32352111f78f0cc5bfb70f5b298a54548d712972b51a |
|
MD5 | 2bafcf45c57338c26e9ff02a3abaab33 |
|
BLAKE2b-256 | c7d0e09d42528f78a8355a52c0251d7c653b511cb00d70777e64acb4b17f110f |
File details
Details for the file abcrypt_py-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 219.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c45a2abc6ce21474076ae6d8b368fbf6b4518ab61c30e38ad0b6fb88c2d0d9b6 |
|
MD5 | 3f659b06756c17ca1901a5188010dabd |
|
BLAKE2b-256 | 5e14188a4b67207b69fbd1b2c5cd326cdbd42cd521d8ea45dcb7b74d96bf0025 |
File details
Details for the file abcrypt_py-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 195.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18ff39161157f12cbaa7b29a43a0034e8a8b9b7f2f946e5c30c200b0256715f7 |
|
MD5 | 899684fe44894273b123bb9acaa4a522 |
|
BLAKE2b-256 | 9a7bd97167cb3c3e382daef4589de8f12a40c1dec53128be0bafc3f7da574f38 |
File details
Details for the file abcrypt_py-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 219.1 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a75cbb5c1c9aca0be1f54f48dd9820d71abae10f560f1a1f4d75be089c032f04 |
|
MD5 | 8e5766176bc91372889dd65504a6b36b |
|
BLAKE2b-256 | b2127bec3d92b85c4ac44558108bc0e3365c1a33002695df255f26c710d6eefb |
File details
Details for the file abcrypt_py-0.1.4-cp311-none-win_amd64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp311-none-win_amd64.whl
- Upload date:
- Size: 147.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff582de6787365843edc1fb1aea27aad2593ce144edd6d8cb2720d8257266bce |
|
MD5 | 24a03afb5404247480e2d2c4f3fb2311 |
|
BLAKE2b-256 | d18dd626ed22139033e1b3bca1042bf3999581ce2eb699ffef0c7d62be3288ef |
File details
Details for the file abcrypt_py-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 241.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ed101140213c8d4e4d33cc6d8953dc64776fb7866f9be458b4f80333b5cad78 |
|
MD5 | 0fecd4f2ff2d61d1f87cf8d0f838a633 |
|
BLAKE2b-256 | 20b6aa740fb490f38aa00e6ba2bb2f0fe5ef5d972e7bfa81e046e7f9cebcd940 |
File details
Details for the file abcrypt_py-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 220.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2f7dfaca52564f5780829f8fab7bfcd4cd56c50f9ca8bb37c7ec488f978b0d2 |
|
MD5 | 74c667d31b4c06a890f16dc157b97f40 |
|
BLAKE2b-256 | 938f9bc60bda57115304cd3ce88f63a8cc2ebd2b0185d31a5fdf6ee579208055 |
File details
Details for the file abcrypt_py-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 197.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b42b383232208cbf564ef384b97dbc31ce19d095c88e4b03df7bd6480eac292 |
|
MD5 | 17615f5b430b1d7d28c213e36e8e46b4 |
|
BLAKE2b-256 | ee2abc4c4fb28f6c4cb770ddaf64f04c38494641b0ed46157573cb23198b28ca |
File details
Details for the file abcrypt_py-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 220.5 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 153732c3148eec575cf7b950651e7630858619c0c76e82e1ae54d4bbabe8e940 |
|
MD5 | 3543fab7f4c52fb01f219685ed4905a9 |
|
BLAKE2b-256 | 419ad5d7c801f0b28ce6b74835e28c2815d3705c201de2893cec980c6ca2717d |
File details
Details for the file abcrypt_py-0.1.4-cp310-none-win_amd64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp310-none-win_amd64.whl
- Upload date:
- Size: 147.2 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 112211f34a3d2b34de4ef5b8332ca94e79616c4ae830d423df21e0bed697cd92 |
|
MD5 | 4a0170463beda10a6f83997b0988fc7e |
|
BLAKE2b-256 | 628e9cd050faa156f8b3328f899802bf863913604fc1fc467b1be83ebc6f81f8 |
File details
Details for the file abcrypt_py-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 241.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | caa3d2a95202799db59daecd3e9922411577ca4c6fc640b597ab3c264014f99f |
|
MD5 | 4b9f1e01288532d3cff815ef8b29db57 |
|
BLAKE2b-256 | 9aeac6768cb6a79700ed22bc8946fd1478595fd5a1e288d53e9ff7eb435fec00 |
File details
Details for the file abcrypt_py-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 220.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3eb406d3e430d9a1a00212518cffef088e62774d8e71848e1eb71ddf1ddce925 |
|
MD5 | f46e21cce4bff254aea910b29cd7da0b |
|
BLAKE2b-256 | 2a62136a7d2d4230988a256c46ccccaa982917433e06d1249aa94c3ac6baf291 |
File details
Details for the file abcrypt_py-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 197.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70a9044dffbbf9d301eea9b5543b8c82c3ec12174bc929f09847678e896381d2 |
|
MD5 | bd928acec84a3eeff2c2cd8b24b260ef |
|
BLAKE2b-256 | 6eb7fd7c83454f0e2c8a3ef8c983197a184a5354b9abcdb596b783a859fae579 |
File details
Details for the file abcrypt_py-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 220.6 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d484c5fed4f69ba936f6d75adf6c6edfa9d4b85ea2470a6362710b1547618342 |
|
MD5 | 9bac1c3176da965ac91ca674f7ca8a12 |
|
BLAKE2b-256 | 3985f212612850ee9345b3a5e47239f2d5bd8a6b2e390451d9bb72c9c53906c3 |
File details
Details for the file abcrypt_py-0.1.4-cp39-none-win_amd64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp39-none-win_amd64.whl
- Upload date:
- Size: 147.4 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f77f1aeae3b183e3c7cfef89b3be71e9f3498ea6cbf189441fa5717d295e3829 |
|
MD5 | 2f777c4fc07353992111c6899cc7bfb9 |
|
BLAKE2b-256 | 48eccc376ebc4edde6d0908c0a7eea7f4cd56346e35143c3c409881204272ad0 |
File details
Details for the file abcrypt_py-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 241.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53527f971d06f8e47b6b10e39e52ebd0639346ed586ef7c1d641bf5bea2b1236 |
|
MD5 | 291af2909422396bfbb3089857c0eee2 |
|
BLAKE2b-256 | ef22cb7a759edbdf19cdd35aa39116acf70907f935d8f418bf159711fc14c13c |
File details
Details for the file abcrypt_py-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 220.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85179b4fe53dd48398b08e18ec8b40ca430d6a37e0ad49f6aa6b804bcf605771 |
|
MD5 | 21c954b2ed267998a720503ece6a3b74 |
|
BLAKE2b-256 | 2b95852565c59ff8fd5129e9c921a530b4862758e4f4203dae3db7fb73629c0b |
File details
Details for the file abcrypt_py-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 197.3 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 636059b1e9af56fad615b20831704af089a74faacc1c3e25a784e36fbf8e5ba2 |
|
MD5 | bc6819d12d666778b522c1f25b8fa859 |
|
BLAKE2b-256 | 7c1928b94de5470abcf9df0460754923fab755b45a0c73cb8bee6247dd06cc66 |
File details
Details for the file abcrypt_py-0.1.4-cp39-cp39-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 220.7 kB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3cf5ca6dc8785985c0cb6eee8a50f20a7f42957cf7249f669f5926a5b75364e9 |
|
MD5 | ad64aaa30a391b086a60a9775e20d09e |
|
BLAKE2b-256 | 23ce7745591b9ef49d3cb0011546bc1c99eef7f988ede4fb142c17ce27adb5e2 |
File details
Details for the file abcrypt_py-0.1.4-cp38-none-win_amd64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp38-none-win_amd64.whl
- Upload date:
- Size: 147.5 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9a35423baa0158b18e05982d2143fc3f72dc2b41789bef20dd8e8b2d500d7b6 |
|
MD5 | 52860f0a822ff4b481c1af054b411c43 |
|
BLAKE2b-256 | d10518970b2610e7817d358cb1a71c662459350aa58fc0240aba8f0c3b8da6a5 |
File details
Details for the file abcrypt_py-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 241.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50a3e07ec9ba7b3a1d028895859eb8fcb4553a1d6006e4b1cfbb4b55b4cc692f |
|
MD5 | 9df1298f34ca49e8e2d09f588f99f80d |
|
BLAKE2b-256 | 5d262be468e59c89096f66b4b4aafceb59630a0e1993967f0068f966a39bec09 |
File details
Details for the file abcrypt_py-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 220.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fcd740c83894fd33eb74e392b718b2c0cb557e5ec2ac4a3dcddb9404fe7ee0a9 |
|
MD5 | 4d6681e0dbd6f875dfc5d92071ee4c3d |
|
BLAKE2b-256 | 2fdbe265c6e0013e901633a79d24526fb3c3e8c58dd5be9bb8d1770266e7318a |
File details
Details for the file abcrypt_py-0.1.4-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 197.3 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 156698af34d1f21bffc051dbe45bd90674b0f54eba68e342797f858f13695a9b |
|
MD5 | 849cad088e2d108fa68433e6a1808e62 |
|
BLAKE2b-256 | 8f0559d74b8ced7271e7bee031747f30ad3c0840d5d3b7c846422bf4823c045c |
File details
Details for the file abcrypt_py-0.1.4-cp38-cp38-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: abcrypt_py-0.1.4-cp38-cp38-macosx_10_12_x86_64.whl
- Upload date:
- Size: 220.8 kB
- Tags: CPython 3.8, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a860c130bb594a65b8203cb458ee3a0d3ad1202ec6c5be7569d661f671411b2 |
|
MD5 | fead5519b87a282e030e5ed21f7f610c |
|
BLAKE2b-256 | fd2286dff187098674395f38bc742a563c53de6db40302a3b7e7861d1f5cfde3 |