Skip to main content

IAM and data encryption at rest

Project description

Apache-2.0 Downloads 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.1-pp310-pypy310_pp73-win_amd64.whl (175.9 kB view details)

Uploaded PyPy Windows x86-64

krptn-0.8.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

krptn-0.8.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

krptn-0.8.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (226.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

krptn-0.8.1-pp39-pypy39_pp73-win_amd64.whl (175.9 kB view details)

Uploaded PyPy Windows x86-64

krptn-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

krptn-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

krptn-0.8.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (226.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

krptn-0.8.1-cp311-cp311-win_arm64.whl (143.1 kB view details)

Uploaded CPython 3.11 Windows ARM64

krptn-0.8.1-cp311-cp311-win_amd64.whl (177.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

krptn-0.8.1-cp311-cp311-musllinux_1_1_x86_64.whl (803.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

krptn-0.8.1-cp311-cp311-musllinux_1_1_aarch64.whl (752.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

krptn-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

krptn-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

krptn-0.8.1-cp311-cp311-macosx_11_0_arm64.whl (201.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

krptn-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl (228.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

krptn-0.8.1-cp310-cp310-win_arm64.whl (142.2 kB view details)

Uploaded CPython 3.10 Windows ARM64

krptn-0.8.1-cp310-cp310-win_amd64.whl (175.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

krptn-0.8.1-cp310-cp310-musllinux_1_1_x86_64.whl (802.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

krptn-0.8.1-cp310-cp310-musllinux_1_1_aarch64.whl (750.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

krptn-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (272.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

krptn-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

krptn-0.8.1-cp310-cp310-macosx_11_0_arm64.whl (200.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

krptn-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl (226.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

krptn-0.8.1-cp39-cp39-win_arm64.whl (142.1 kB view details)

Uploaded CPython 3.9 Windows ARM64

krptn-0.8.1-cp39-cp39-win_amd64.whl (175.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

krptn-0.8.1-cp39-cp39-musllinux_1_1_x86_64.whl (802.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

krptn-0.8.1-cp39-cp39-musllinux_1_1_aarch64.whl (750.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

krptn-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

krptn-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

krptn-0.8.1-cp39-cp39-macosx_11_0_arm64.whl (200.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

krptn-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl (226.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4f30d73dbd370a73f85cab488237cfc0a511b8af6242bc437917656090927281
MD5 4dd1bc453b205703ce19828de26c38d4
BLAKE2b-256 92e9f469831bd30d7afd2c94bab1f5183e93ebc22f7c2cf1fbfe7b4d7ed4748e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b27f111c0fac6cf6c769e754fb394b35e85db142e00bd99fdfd0d07c2cbcb41
MD5 2c3eefa2199d40c035e498adc511ed4f
BLAKE2b-256 0fc71364da8a55f3f710c8b40551101cd9c8d9202d7ab5148e4af7c1553321a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8511045c5518cc0a87a3999daa5d3fffb70cafd90a9f1ada0255a5a4ed81f9a
MD5 9790aea0d9db358cc984523636a7b8e1
BLAKE2b-256 677a7f1572226d6301ab97e6a7f6fd0c2bf6759e597192f2f63079cd3a7965d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 871e7b8ffdb65ec0df7e7e52bcee7cc858119c0bfbd524c2c6555167ba4a2999
MD5 9a047989e1d69ba268e3b885e61a63b4
BLAKE2b-256 f1c0005d8b059e40bd8c9c0dd1a65907da09c039155ee1ca27a304de641451f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 55d87b532ea021ddd99d640241f6d56bf39fee505b6c257e22a3cef16b9728d4
MD5 672d4db2b68c0bc5178c0a07a63a5932
BLAKE2b-256 aac8f6eb7bc6d717b4827aa5d6b29f77ec328cab74cf01ebaccd10b3758340a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c4439f6e4f2320646ad0476d6bc0b552a544588562e268e326cd5ff2767c5b1
MD5 7eaa59fefb2d425adbc806866c881dcb
BLAKE2b-256 12fb8e0cadf56ed983cf3120ccaae3eddd5ae18379910e8156ec083e45563af6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04e2da7948d9d6e98de0a439e341521df5ca0a4efd5e05fd627f0f7ba21ead63
MD5 c5df83b5da232b7e3f9fcb6cf2ca2d80
BLAKE2b-256 67d81cbdb264a21d8b09906eb3289f8680c319cfec040672689eb5bc52524767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea3a03fb262d302c1ab7276954549eabe0baccbdb83b4b833c2f48837bc3990b
MD5 96172cee595e0629f6effbcdc7840d83
BLAKE2b-256 04a64cd6917eba025675ae85636f6bf01ca173179e29c2d8cff2460820ea187b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for krptn-0.8.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 869e4ae1c933e776da18dc286ec936ce91178576b425a4e1e8b83962194d0d9b
MD5 735566cbdf49dbaaaf1eb84800363f10
BLAKE2b-256 8b2e4b3b231c6f4ba10cc93adde8ae7e25bcb534f114b5cb0514eae887e7c138

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for krptn-0.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 992274205c4eeeeb8e21e9ee36859c1b0c2b78dcdb199b3a37ac9b4b8ef5f336
MD5 0f34e9528cb76afd718747ce2e0f3071
BLAKE2b-256 9bbbe9c76da27923a27234af3bf58a44c815c861a49cd32fb99b103c276d4f06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9871e773ee578631449e3138d9046714f45dfe600451a60b0b4a61767106b9f7
MD5 5a2aae541e54b535cdd1d10ba059a9a4
BLAKE2b-256 a56425031383ba9e89aac47bc6efb9098a029c9bbdb4f27249a0c174d4e17698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1537afa6b9ab25ef91f53b6c250b6cb6fc38f66189cd487b6e26fb1c380369b7
MD5 fed0072f45ed2e59380a23d5f3402912
BLAKE2b-256 7cc72858c3a4267aadc28efb63f969e8a7259f3a27f01b7f3f184f294f9a96af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd737651978f3d09b2eb77114b05ccb86b4d75e4cdc7f2693ccaad128abbf521
MD5 9d58fc029d8879e2424b6e7f56821181
BLAKE2b-256 d7a4ac9f2257d6f4ef05134a82e32f9b39952ddab0ca16fbbf5b651d565b6ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 594bbbf4f44224c6664ac50e91f7a3fd3c6a39e4668a9c946e38a8174a31d3e5
MD5 8a42fb45d080a52917c8864a18b40d44
BLAKE2b-256 2093bec7a85d596d7f5ca244489f4bce6fa65b842419cecd8fa51662b7a87324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17cc6c2460c8f2c85a0abcf028a48cdd2b2d5eb7069c10999d65e7ae257fb1a8
MD5 8efad29c19d06fafc404316c61d98f99
BLAKE2b-256 fc7e432dcb41233f749d4131902d67eb1884c0a957362511ee8576c2fd9d1802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1535fdafb7b44ef0e0e11c12bbf1a6b4b9d7f2b79f58db8daa581a8f3d42e685
MD5 b5183f96b52d0feea8b0be664059aef7
BLAKE2b-256 b6db994369079f048d2a2d6f07c362382a071addc9965f2a129a678da8366150

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for krptn-0.8.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4dd6ab825331b6e7523117f699ed1654cad1e609ed5e01b6a676285022fac84c
MD5 4161aba2d80dc5d4220e37bed7b9a62d
BLAKE2b-256 1dd16c6528a5ccc7a65d999148dbb08349886e77a27dd1e81c5eed8fc05c82e6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for krptn-0.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 af49c7ff8d92edea139857c782bc5e6a3106f5746331b34f688ee510ec2da804
MD5 b1430820372fd65cbd87299fb8b17f98
BLAKE2b-256 d3bc2afc64ca2b9c87d081548e34ef5f5bfbaa8ee7c57497caa758189af0adec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e6d017745a4c4510cdee9e9767d662a494ad05665f65d99d00c12cdc7ebb9f3e
MD5 d7a9564d6d2339e02521bd429f4a2697
BLAKE2b-256 4274ee7863d72f722962856180e3047776eaa75762a7240dcdbfa7f0a2c00d1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0ea483e1a2ebf592b6f1f42ae3ad673a7cfa8a4972965243dc9d33d1c72657cb
MD5 73f2d275cdb6d454106632f50951c6b0
BLAKE2b-256 dcd0a9bdf5546ffe91d85379df029dfbad25d0ff47545c59b1fed91451a2f407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee26c1b9398629902fd9b71e5744e8bd91ccb9817cc021513cf3f41b0efd71bc
MD5 1609759af8b585024c03057d13bea118
BLAKE2b-256 f3a96e56c1d072127356a9e38423e656430a78601bcb5c43281db245880ab114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 779d08a5b251161645e3770d38a8aa01a478fd87ac64b5cf6b79d0fa91fc5de4
MD5 6233c8ee7a2cc06bbb2264167c0556ad
BLAKE2b-256 c7e1c33ae86c8b1fdbf349754bb6a4d3a65ae8e99be8c30c1599053078bb7ea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 575b0f80ff210e3450c2d746ad4a6ee730a50082f1f6d2f1281124f9c2e4e06c
MD5 73f4d75761a432ea42ec55b0e71af15c
BLAKE2b-256 c5393f955ec72410ae281b3a00fc42ee93f809338e236d7770e922e7458decba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ad699c14b63a8ad554766ae9113e0629ca29e4f4e631e75d987b785f2964741
MD5 3a8e911dd733c88f6f8bc6eba0f5191f
BLAKE2b-256 348fb47f1f605dd6ac05f23a0fcd2634c57fb16ef32af7e2ea94e2cfa28472ad

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for krptn-0.8.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a9052bdaa233da06288f4080bf6a2b2e47786aa3329783909606bf1f0eb30bee
MD5 4f0a36c64e8cae8c5a7a9a733a35f5dd
BLAKE2b-256 6d4866e964efbfd2c0127621a612cf6400b7e947881e23e96ea240a43e6d940c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for krptn-0.8.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7430cabff91b371bc7f823b6344bb0a0701161e760e28e8a620c2ef04f3eb2a0
MD5 519126ad03b772c26c11853e50a7e643
BLAKE2b-256 4f75e031776822ded3c34611a00481a64224fd0f3413b63694740b5764b8ab36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 796862d81aac12a3d9d0f4ef7b23048da78355e8c3304a1c1d56b9bd9d05c2cf
MD5 59104324ca984d3d3a500fce36b14c89
BLAKE2b-256 7503d4f224dde181fae0169244ac21e2a63e4c7cbff25a34ef6794052d500f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fb5cdd41a04b157d2f6ebbb678052c2b19f47147dbecd94fcadeea961a8784dc
MD5 92a18aeaa71feabb5bb1f6b3ce6058b5
BLAKE2b-256 3ccf9dee6937547f82519cb5f8985aaaa3bd06afd07aeff9ce0380825bb074d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 094bbd2877404a611693e7789d5aa24f6d0fb2514665831234aad2e3ce102cd1
MD5 ce19d7e9cec35e73a1dfea937ceff5ea
BLAKE2b-256 8b3617034eb10aa020a98d160f2d686be8e7ed8931587346a186825f5bc19769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f4fb5b801888255ebf5260f4fef823631620ff220988772ee4e2c757fff5a31
MD5 b8b13ea92b7386ebefdcdba64ba6b5ee
BLAKE2b-256 571b0d516f740756f7fb319c690968458ceea7ed1f1d106fb666c655bccdf170

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8ce324b88c719754b2f5c8b9f81f33d137a3d5d79212b91c240cec132382009
MD5 cf3f445d64a047505d694e4b9e14170b
BLAKE2b-256 4847fcc5bd0f7519eac2ed6dfa120a536de50eae4f26c6bafabe9a3c4a086921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b55ab59ac2e592a1d2f49bf275bc3baf76fd496b45f2d2d0d71d31d212d7ebfe
MD5 c39ddaff7e83fe2b6fbbede15bca6d09
BLAKE2b-256 926d4868321e3fb0e1e3c87b86a9b25b673c6c4b3eb71dbbacaaf656ab3e39f5

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