Skip to main content

IAM and data encryption at rest

Project description

Apache-2.0 Last Release status codecov

We also have a homepage and documentation for you to check out.

Krptn

pip install krptn

What problem do we solve?

We all love Django and other web frameworks! However, their primary focus is creating websites - not implementing secure storage for user data. Django makes it easy to store data. While it hashes the password, it does not encrypt user data for you. In case of a data breach, malicious actors could access any data from the DB. Encryption is left to the developer...

Wouldn't it be nice if encryption would also be handled? Perhaps it could be handled in a way that keys are derived from credentials, such that, without the user entering credentials, not even the database administrator can read it?! This is exactly what we do!

We also handle user authentication, including MFA, and passwordless authentication.

Krptn also runs in the same server instance as your web app. So you don't have to host anything new. Just install the extension for Python.

To prove that such is possible, we have a Flask and Django example on GitHub.

What do we do exactly?

We are building a user authentication and access management system (IAM) with data encryption at rest derived from credentials. It is available as a python extension module. However we have certain limitations.

How we achieve this?

  • All data is encrypted (any data can be requested by the developer to be secured)
  • Only the appropriate users' credentials can unlock the cryptosystem (this protects you from server-side attacks)

This gives you security from encryption without ever needing to even notice it! It protects you from server side attacks.

Here is an example usage:

from krypton.auth.users import userModel

model = userModel.standardUser(None)
model.saveNewUser("Test_UserName", "Test_Password")
model.data.email = "test@example.com" # The email will be encrypted, and securely stored

Krptn Visualisation

Try it out

Quickly install the package with pip for Python>3.9:

pip install krptn

Have a look at our User Authentication documentation, and create some users.

Ready to integrate it into your WebApp? Have a look at some of our integration's available with Django and Flask!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

krptn-0.8.5-pp310-pypy310_pp73-win_amd64.whl (176.3 kB view details)

Uploaded PyPy Windows x86-64

krptn-0.8.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

krptn-0.8.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (228.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

krptn-0.8.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (226.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

krptn-0.8.5-pp39-pypy39_pp73-win_amd64.whl (176.2 kB view details)

Uploaded PyPy Windows x86-64

krptn-0.8.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

krptn-0.8.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (228.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

krptn-0.8.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (226.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

krptn-0.8.5-cp312-cp312-win_arm64.whl (142.3 kB view details)

Uploaded CPython 3.12 Windows ARM64

krptn-0.8.5-cp312-cp312-win_amd64.whl (176.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

krptn-0.8.5-cp312-cp312-musllinux_1_1_x86_64.whl (803.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

krptn-0.8.5-cp312-cp312-musllinux_1_1_aarch64.whl (750.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

krptn-0.8.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

krptn-0.8.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (235.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

krptn-0.8.5-cp312-cp312-macosx_11_0_arm64.whl (199.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

krptn-0.8.5-cp312-cp312-macosx_10_9_x86_64.whl (225.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

krptn-0.8.5-cp311-cp311-win_arm64.whl (143.6 kB view details)

Uploaded CPython 3.11 Windows ARM64

krptn-0.8.5-cp311-cp311-win_amd64.whl (177.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

krptn-0.8.5-cp311-cp311-musllinux_1_1_x86_64.whl (804.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

krptn-0.8.5-cp311-cp311-musllinux_1_1_aarch64.whl (752.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

krptn-0.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

krptn-0.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

krptn-0.8.5-cp311-cp311-macosx_11_0_arm64.whl (201.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

krptn-0.8.5-cp311-cp311-macosx_10_9_x86_64.whl (228.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

krptn-0.8.5-cp310-cp310-win_arm64.whl (142.6 kB view details)

Uploaded CPython 3.10 Windows ARM64

krptn-0.8.5-cp310-cp310-win_amd64.whl (176.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

krptn-0.8.5-cp310-cp310-musllinux_1_1_x86_64.whl (803.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

krptn-0.8.5-cp310-cp310-musllinux_1_1_aarch64.whl (750.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

krptn-0.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (272.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

krptn-0.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

krptn-0.8.5-cp310-cp310-macosx_11_0_arm64.whl (200.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

krptn-0.8.5-cp310-cp310-macosx_10_9_x86_64.whl (226.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

krptn-0.8.5-cp39-cp39-win_arm64.whl (142.6 kB view details)

Uploaded CPython 3.9 Windows ARM64

krptn-0.8.5-cp39-cp39-win_amd64.whl (175.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

krptn-0.8.5-cp39-cp39-musllinux_1_1_x86_64.whl (802.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

krptn-0.8.5-cp39-cp39-musllinux_1_1_aarch64.whl (750.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

krptn-0.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

krptn-0.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (235.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

krptn-0.8.5-cp39-cp39-macosx_11_0_arm64.whl (200.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

krptn-0.8.5-cp39-cp39-macosx_10_9_x86_64.whl (226.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

Details for the file krptn-0.8.5-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c476c738b604ee8be25bd16b8f8908ea71bab19f59680b931c55595c8b7433c0
MD5 a0e56cf32e399cc21e74a410bd65f00b
BLAKE2b-256 0ba184ae9ab3d4684b965e13edb44bf52b1897c02a686ec0fb22d05c8b57fcfd

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 725b448eaf51312122ebf0cfab5d5bc1acd5d20bd27d3060d3a28b6b01ee2e0d
MD5 4997611ac658fd1567810374741556b3
BLAKE2b-256 93fd603a61cffdadd3e4f58ce94427233b59212575e37593fa5e39cdc8c99f8f

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f9163f629934c61e4faa1544359b3c70e892956675371f97d5ad144e06178f9
MD5 4166b42d797780259e4dca48f5479e9f
BLAKE2b-256 ee727f510d83629ac5ebdd55f32a570063c60c114708ce4bcab83c0c06f8d88b

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 770a06c912ce33c9c22298f81705adb5f722c2fefe19eb21457bf1f34068db47
MD5 ed26405af093b5d00d55dfeab41c14b1
BLAKE2b-256 e3af8410590e0af6fecaf1c84777a6f1f1c20676ba59b57caeaecfa10b6b18c4

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f444110224b30bd0cca31d1e123ddb45114f37274f126532bd19ec58f87575cb
MD5 a8996f85f4c969454e0303f83947d40f
BLAKE2b-256 8c43fb521bf207b2900930a5dfba588b514def848434e171842fd06ab68d81ca

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f46a3f5782476f36c2756a67c3eed33cb09e7b5cf346ce468eaaced7aa0e6da9
MD5 29956a4d92e40893932a71edc071b4f6
BLAKE2b-256 aa7b40a87592eff2ffef7555603ca8709fb31a7bac2261e356a66024e427c2c7

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7800118df4f6e9c256c9fbbcef0e7bd60f913b411ed85bb260479ad9231eba8
MD5 6fbbc7ad7b4862eb4850464d1656c38b
BLAKE2b-256 6fc20680b803f988654ca7f0e04074d35516a02fa0d8528af211d3abb968af0c

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 91b92d56420319ba92bd4cd4c870a696a1d6cb9382aed535e3c334f310115b0c
MD5 7c057be405e8a007f15f38348aa5bd76
BLAKE2b-256 aaada67330063799d6770d6872cca49e81dd388319271d03f9eb42d59b6953ea

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: krptn-0.8.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 142.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for krptn-0.8.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 30df24f4bf83f4eb8cb682d385344a1be97ef63af4727b5a70a5d993a12119d5
MD5 4430e8a52cb6b396fd76e543d1243822
BLAKE2b-256 8e98d351290b2448b80e8edf4889988e22aabf6769a1b765b57a8e74ca27c0dc

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: krptn-0.8.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 176.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for krptn-0.8.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 826e24d83470f45e189997d8d4807291b9ea9f279f6fda2920cd3e533410863b
MD5 77a8b7fd9a2b4ac7849b0bdc2fded737
BLAKE2b-256 e0eac22a7c25ae1cae19cd6d5f84cc13390e51649db3e2f3c728c1a1427b9e4b

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d3aa75db6c6be4d1db607008b0e1a3b3118055895235a0c285978b8100b76774
MD5 fc0192d422d27daea501a4197b69422f
BLAKE2b-256 5ae120cd44b9299ca7f9a53033cc7876472622d03137cf29190124ce89a1dd04

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aeaca6351730c62c37bbf16d50c1606846049b558c0868e4d9f05d8d436a9b66
MD5 4be000ff4c2bb7b9e5ca96a871b41a72
BLAKE2b-256 b9bb32bbdebff57ec28cebc292b10bf6c3fc660ac122dc0abc584f86ba7f63ca

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cfefad9fac1f1a2b38aff8708c3b28e4719398a71c2eaa62d08606cd0fc7fb9
MD5 dee3ab18c3f653f5d942fab5265daa0f
BLAKE2b-256 8602b8a1309ae113f816e4fc8a9cb6c40553a90df4fe1f8a7989090032e89ded

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ac96125a6eea5464222a31e68988be9979ec6cb7e9a8841c511e4e7769f9caf
MD5 205b43ca5d26807dcd5bfecdf4710460
BLAKE2b-256 07ffdb1aead8f2955855a8a4762f8e9b2a8ed5121da115112478f6cb19607ff2

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc25ed87c3549e80d744c2926092a43e8f4e5c6de116d821098055c7fe713b23
MD5 7469bddec7e01a429b8fd0ce30e870fa
BLAKE2b-256 85988adf7f075055b227ec00b155f18cd5a7faca6e302aace88ab907b4f993ae

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bdfbab45f7282c4cde562ecd2e96bdfc21493bbddb2533accafa5662f14576b6
MD5 991cee7d0f082138e865f96f8b94487d
BLAKE2b-256 fe531001eaaad18526a73227c73e853daf8aa5604b2c60a168f38b0bcb1710ac

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: krptn-0.8.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 143.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for krptn-0.8.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9b00ec6cb38135cef2e551ccb9df3da78b92a5dbf33b574b32c48a23c6dc0bc0
MD5 52541fcaf44e535beb06102972c2811a
BLAKE2b-256 a0ea71c87687aea3daf1c9842c4efc2b8c17e96b01d1149eec405a5bd77cd772

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: krptn-0.8.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 177.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for krptn-0.8.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5614d237ddd39f0f7d870c212789680105febb372f25952bcd28a832e579e98e
MD5 d69298d51e1143acb4eff68c94ccdd90
BLAKE2b-256 39ab03f1f77380ef8eb41ff227b00e3d7291ee19676970fbcec510b4bb8895e4

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 62351d51c6d2186b49e4c7968de3c61f5ac55f0934a48f7ed874063405f068b3
MD5 115e8766e1c5474502be861151bfe11d
BLAKE2b-256 9e6dab2cb6bc96fe26dd14182fa03a203a126bd722991f69de52bcbaa8f6c4b0

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9d1934db87448f66bbdf87f3b574fe6aaa2a6c0729f30c39d8c217c1100dc059
MD5 622d1023fda54ebe0a1b49db2b4888f4
BLAKE2b-256 2b0007a97ddd810aa88e7759d5bff8d6141b43b97aebf914dd73fee2dc3cbec1

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 235e77169dce5500db29fb1295772172b31a981fe1ca055a84461f36c7442273
MD5 1be405ed40e31d305fca1a44f9f476e1
BLAKE2b-256 c3ebb826dc1f34565b58b88f882be980fa6f811a0c79e9654ea35d6ef5bb4ecc

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32a6da7baae819235930702268d260097aedf14e858968749e888ebaf62cc9ab
MD5 41fca765cb1eae061df689bf961409ea
BLAKE2b-256 a422105a61bfbaba9045ffb092e666750d1e2cdd12867e7f3f2ae740cc319d6c

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1a2bc8a86c1a59fa1bc2a9863571688fa9540dacd84900ef02c69a2578f7f61
MD5 6e75516709f04708ae837de3b7616559
BLAKE2b-256 5b79297dbe2330ddf2434b0bb91d272ec5a56c725de92e90165aa339f94466d6

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f9c5f74e3c9bb6cae8848004b25141a2d30f874246497c65ce96609680324168
MD5 8c4e0310e336a3b4a5dc1051fb2fb367
BLAKE2b-256 4ff24c93098e7faa9d510e6cfe586b3af47c70186c7b32fd6165d30229ab75d1

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: krptn-0.8.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 142.6 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for krptn-0.8.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2a4ba3469dca8407d573c05d4ef49870a6e61936fb995ff587812bfc2d8d9322
MD5 218d904845de9718838987ab6dbc8f2f
BLAKE2b-256 5c19c375c6b5f2e56507c90084579dacf4879bcb2edb35caf476453ece549b0d

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: krptn-0.8.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 176.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for krptn-0.8.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e6d851087c295ba0c99c5f2f9e81e3d0c431305c4c41878a290d5a2757ef3faf
MD5 7c9b26e48d613f2eb9e00bb8cd31bbce
BLAKE2b-256 c7149c1bb64e40b59b4283999c214f1ff8fd5fd5283dbf7e23f79e7a2512b068

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 47bb48a04b2d001326afbddb9fcab163f9082b7f68a760b8c460dfb0fbd9b4ae
MD5 5aecb57d276e4ea0df0df6c9477f8c6a
BLAKE2b-256 51b069b6d118f917929c78fec9b102128eabd1497aeed5c85f0452a2cbca8a54

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ef968e94c1bf2aea6f6a5d5835ccc8138ba4cc8f09623a4922a50ab0afa875f7
MD5 c8c1c9b5d5946e2a51912bd057ad43b9
BLAKE2b-256 89e01574d05c4e81d4c9621261ab6394e0163178ccc42ca7b4e1b0bcaaa9e654

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61e497bad1049c33266609f98adffe20a04c043ff7865dc1927f3a15215ce2a2
MD5 5b9e774489bbc5674029fa574b7ad50a
BLAKE2b-256 17ba99de55819804172ddcd836dad5356694f6ddb26db596fd5c0de3c8bc1d6e

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf8d512c79b0c133853b168e31f17caacf6913f8f10c29a3b82a4da4b622df09
MD5 6a5bb0ecb7a5d0eca4cc0fa7688ff9c1
BLAKE2b-256 bfae558e6acf70f9e9a177030c450b4dea83e0db4fbba3ebb1883f31605ae1ee

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5aa31e29c700c951168af58dab5a583a4a748cd9f5fece82a6cb90968fc86a5c
MD5 eed31c244ad58dac259f628a5c77517a
BLAKE2b-256 12c988b68ddcf9d7b1f721d6da56394504fdaedbdab1dab024b9efb1790a3579

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8645df15cb13cf3639609be409f8074b2d1a3654062598af8a67cd989e9ff52f
MD5 500bb8ea254ef0298584ee3e06f36a33
BLAKE2b-256 f858ac9c915d2df887de731e7e4ab15d50adffac2a359255ff5120629a1f42d0

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: krptn-0.8.5-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 142.6 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for krptn-0.8.5-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 9dfb2eb3d53d0530de75a8c31f9f8287cf7fa2d89f9670772aa9656bf0d7872b
MD5 49e257c839be1a382bfa9d2ae97fee72
BLAKE2b-256 063ae258d9ab6f144ddd40c9a255f1ec456dbb4b9862aaa4440333519bc34e99

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: krptn-0.8.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 175.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for krptn-0.8.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f1024f68783a6d5ab99b3bcb1871067f7465210c8597ad280de38c4dbfe2ba55
MD5 07705b025360c733c138654f06d40999
BLAKE2b-256 6a12d6e920bd4dbb29228259cbb0252b996b957c5c95174e42b72e2478390864

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e255388b9c388e33e68e61b4ba3c3ce2dce60b0260bf3a7580bca744853bb777
MD5 dd86b145d9b124fac92d95f9f5473e4e
BLAKE2b-256 d46b0944a42c87f56cd4d87774865dcf4b466e73098ca3c1e447e8f391a5380a

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 41b67ac234ce762e50faa114a4c0df535830e51eb2ff0679f467f5ca8a6fb306
MD5 ba32ce39b3834af22191488fdf25f183
BLAKE2b-256 2e9be71144b6e9bc151bc60a5dcb61195b6f6a760693321aa75b882071a0029d

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89bee2a92fc72db170e41c558599dae46f5e2a0143456e91607e34600dfa863c
MD5 d33ada1073ec7387d7fa617ad7c6b1ba
BLAKE2b-256 df3a7a6f914da94df7ed616514267326b5c4da4ab5ee818f08d5d2c6ea3490a9

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10cd75f3c8a3a94c1ab423225e1f009615420e0e6d383d231ecb8d1962ce7ca1
MD5 f8db723b835b85cfb7edb88a25482d0f
BLAKE2b-256 55280ab3624c5cb04ed96f94ece9ae22bb886bf7b8de004e22efdcacdfd69871

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4ed99731efcfcd0d47df61b992af1d9a6a14bdc12aa93450649a875c45c2eb9
MD5 4c40ab695d382853aed57855edb4f7fd
BLAKE2b-256 5ec65708e26a6480aad0c95c171468a7eaed1583ad0782f9d046b3aecc64be4b

See more details on using hashes here.

File details

Details for the file krptn-0.8.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for krptn-0.8.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56fbb794bb4323638a52b95104965e04bc751c47f1cca92875656025e6e2e8d7
MD5 83f93da6497303bdea2de652feae9f22
BLAKE2b-256 ab6aff6df8cc248c8bb7cb8b46b92c584e8f07d434df729650cf432cf0a6c2ae

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page