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.4-pp310-pypy310_pp73-win_amd64.whl (176.3 kB view details)

Uploaded PyPy Windows x86-64

krptn-0.8.4-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.4-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.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (226.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

krptn-0.8.4-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.4-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.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (226.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

krptn-0.8.4-cp312-cp312-win_arm64.whl (142.2 kB view details)

Uploaded CPython 3.12 Windows ARM64

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

Uploaded CPython 3.12 Windows x86-64

krptn-0.8.4-cp312-cp312-musllinux_1_1_x86_64.whl (803.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

krptn-0.8.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

krptn-0.8.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (199.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

krptn-0.8.4-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.4-cp311-cp311-win_arm64.whl (143.6 kB view details)

Uploaded CPython 3.11 Windows ARM64

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

Uploaded CPython 3.11 Windows x86-64

krptn-0.8.4-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.4-cp311-cp311-musllinux_1_1_aarch64.whl (752.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

krptn-0.8.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (201.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

krptn-0.8.4-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.4-cp310-cp310-win_arm64.whl (142.6 kB view details)

Uploaded CPython 3.10 Windows ARM64

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

Uploaded CPython 3.10 Windows x86-64

krptn-0.8.4-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.4-cp310-cp310-musllinux_1_1_aarch64.whl (750.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

krptn-0.8.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (200.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

krptn-0.8.4-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.4-cp39-cp39-win_arm64.whl (142.6 kB view details)

Uploaded CPython 3.9 Windows ARM64

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

Uploaded CPython 3.9 Windows x86-64

krptn-0.8.4-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.4-cp39-cp39-musllinux_1_1_aarch64.whl (750.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

krptn-0.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

krptn-0.8.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (200.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

krptn-0.8.4-cp39-cp39-macosx_10_9_x86_64.whl (226.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b301f78a86ec4150ead0745c95dadfbdac80a1c98ad3da726324f667fa3e416b
MD5 076e094f2692029dec0f486439a4015a
BLAKE2b-256 1c8d95aa9b92f801f41417d35fa2371b5008988a2b83dd18e32aa2c44f4b0bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee133105b5d6462bd11043beedc384740b23f4a052ce72ae859bf5bae39c35c9
MD5 09a90fc0f9c22d4510903d8eb48c6341
BLAKE2b-256 e5cfe64c6d4e86b71faef9c1def8cab088db07bc695bd0b615ea35803afa1a73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00858ca3eb07fb0db5df89f142469ff0aaa8f9d58f441cc635c4e77d5511f219
MD5 755a579461abce537b6c7673e5bc8e1c
BLAKE2b-256 617af547d9dada18c2b9dd8058addd90885cbf57e14532b0676b0a291cf7e7b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 27a3a2dbc0f9f1c3e18921ca1a88ae21102594ff1da6b3a274184b4c83886606
MD5 4445f6a796e088c215501a49446ec85e
BLAKE2b-256 d138bc980c44c85c67afa65f53448526967539816d9205bd24efa7175293b239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a18c34c46fda1e6090d57bdbc3fcc2e0a1682a48f9fe0803806798de0ebc97d8
MD5 ab3f7734e3a9f045311c3488dc2e5575
BLAKE2b-256 376744e12c87091b34e70cfd255ef55d1109e39278d00a051801b73b0a4c393e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de4e3fc0a7425568eadf3dceaa5a3412593472a4f229278b2c88f3f9e6e2a3e1
MD5 8b189936ad91b954eb95a9b6adedd948
BLAKE2b-256 61ae1b5d17205c5574b386e0886fc84618eb73abd1fd15981154ff761464730e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0535dcc3f12873300d489a685a142ce1f28a99f96e84690193981738ce10db72
MD5 e6a319e0f85c3344fd2884b927ff471b
BLAKE2b-256 0d941fd7a2666e7ae4d96bd76ddcf4336ccf40af0bdc19eb41c56e7420735da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db048d16e9926ca4c1f711ae99d5eb9e2808470cdb1cf124a805767e398b7b47
MD5 54028481b2e9886beb913b01d4f29a04
BLAKE2b-256 909736b747b3d608999a4a17cad432d38c9825f2f6c37017848136f1c07257fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: krptn-0.8.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 142.2 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.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d1091bdbafaba00b5a2f58dd4d63ee13a2707edc533e6f2c099c95d36ada199d
MD5 8dae79de94ee7085512a6b2fa2fc2099
BLAKE2b-256 83e00c48b8d2189445dfbc16159ce8232ae2b3fd412ba7d078651ebbb24ae1c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: krptn-0.8.4-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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef01d3833f9b81a3c8032c448a8e8140b607949a07a29f66cb9eff4c1ceab905
MD5 383d16c93ea669c2ee4f15bfa3849e0e
BLAKE2b-256 5125b8484049cd924ae28ace7dbf28dd126f420a3872fe34b040740b5b090827

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a92e6247c3c805113fee34a5312a1633c47671f16cc56a8655158b718bd0e58f
MD5 fc105a38502ef23c80632bb56c444746
BLAKE2b-256 2c9980db720f1ac0783f6537f5a11cdea94b584d69a1f669e93e924372343cfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d045363b0f502b9c090ed9e70c545de452a5fa3f515430ba6f34af4d036faf74
MD5 42773243e259473f0916e3d62403dbe5
BLAKE2b-256 d8a5fcf9f78c1355b1609844eb0f207e68bf8911b23b8a1db36d516a555aa798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff19e89ce25b12f8e260329f04b48ac287f72daa155f9e9bc58e9b8d18499c8b
MD5 50712f2aa43e5c850bbf48c1567edff2
BLAKE2b-256 b77b17969ed47db119f523e2795263f55e7f97866fd8e43f4ab1c55b98e061a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 898fa817264db3c3a4836ff0e600724b8da429f1a451e96039930b8545236201
MD5 982354e14f2ef9b245f2e94a0a9086e4
BLAKE2b-256 e9dc5a2a6509d2b6e560cc0684ae8c8f4f27c7a206f21e3600c3f42324fb8799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11c741a39b6bbe2743f6faf1b26ebe4fa9a4d0fd03f093653b7bc26926f09867
MD5 9251ca058d6eed7e31ab761d22bb5dba
BLAKE2b-256 e1ee54ffc05260b20cca0586e932f08daf00fcf03ed3589e84db83c323ab2553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fbfb2b0c385cc052602e90f8316bfda337e5fa18c8b6718f56c62aaa5f670336
MD5 b01c008ced7310c7a2d0c42863265c2c
BLAKE2b-256 ea91de004f6b57ae2ba48fc4642f146e06452cd3804b1603824abbf434fede5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: krptn-0.8.4-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.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f00dc591c8797a7ea4eb52f9bba66787bc0b180dde5dd59a0b63127fb4dc755f
MD5 52931362508a7fe09b20bd902414bcdd
BLAKE2b-256 71ff79b51c423852c3a23a58604da2bb90a85e5820e4ef127281b2ab794148e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: krptn-0.8.4-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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ef180de1f44c9f27413854c39d4f537bfeeda362d599d4dae6e3919357963a98
MD5 fccb4934b6455b9583cc0ff365266824
BLAKE2b-256 0aeba1d1e851420aa7293e2762962631534f8912615f738082412f16ebdc1e2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d68fcdbc0bf08255ba404aba392a360be8d5ab85e9cdf15a974ab808a1a846ad
MD5 cbcd4aa3625d7b25a37eb7e541c4e5de
BLAKE2b-256 50f47873691e1ea14598a8d6fa1989568b04a5431ea799cb5d9f31bc1b066840

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9c0387b65b5a672330a2a68ef7d57d443ae783a83af4ec6ac834265de99e01fe
MD5 651fd6108e3bdd71344becd0072e3ea3
BLAKE2b-256 c81221f2bb08478e39c0d19f5479bfe99b40e8b710b41381222eef812b284737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f02e1ba16704f673e7e97bb599a31aba883639cf9df21c9800abc410dc758cd4
MD5 727550ed07b9b9a0bf90ce371bdef4f2
BLAKE2b-256 372694ca8ebdbcc67d79538acfc33f1362d8f35e7be91ad4883f1c618381d11a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36e278e14d93c32a2348e82a1f9af77418906ba49be65dbc74c342f0edf83bf9
MD5 a8e1251597e2b9c78b916f48f06eb728
BLAKE2b-256 ff39534879ca5bd5be6aa9aeb49e25f641a0a53a989325a56cf3d0bfd6dfadbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d47d8aea376b120d1de8879b663dabdef97f1ff99b249e27287d613aa0814d4
MD5 587312bcca7a285e2935e6492a7d2b23
BLAKE2b-256 d1bedd25792e0858a00c3f7d5adb561121084326b25af7168018c00db29b2b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bbcfc5e2a24f2cc2362a0dbb5dcbda9c0f3836e8c09b8ecc3a27cb102982b0a8
MD5 ab24905e6180164f7bbbf41de24aca1e
BLAKE2b-256 18b38e4099264595ec9f70eaeb6cd56cc71778458c2679e1eca1d247f35b8dc9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: krptn-0.8.4-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.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4fa9d44fe3f5c4d8e94b1844f7bf3301444c41cd67a87d95e76b41e88db43a72
MD5 3856720286fa4aab4b5ba6449ad4e4c6
BLAKE2b-256 c4cd297d053feb2b9f3c5a771d6ec8cc2bfa8f5550d09b89d7c48f7db5466a5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: krptn-0.8.4-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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fc7fb778ef1696ff2094d51a938e222a00ffc1ebf7bae7bc37c4a11dd8edcd8b
MD5 8d027ed9788068cc7b33c17631487628
BLAKE2b-256 0d3d6e5e8764299c0d657799d1a2356ccfd90bb4b6ca658c542c4713f914b4a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e7605188734f7cc83d3803b910afed0e4a492d05bd5cdf062fc475bacac0b064
MD5 ec565fe2d262bbfd16f0ee2384b46367
BLAKE2b-256 6866a252fe6e0a64d00e88db67d0d9e22f75a3fbde26ede6805a9f30f1ec0f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0c524f5d5851ef69637f0ba8a7e57f57d16b9daed2a7c104d5833b98afdab441
MD5 3446fe694452b0d1145af62120259bb1
BLAKE2b-256 90f42668c978574ea49f7613bb7bd378853cd4d8cc72f1b7fa7a76cd9574f467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f93d7e3a3936addff6fdcd6ba4b180bed2f864f446a56799ae631207ef964df
MD5 35b4de1b243fa0877362fe50829d4c31
BLAKE2b-256 d1586ad589aba1b7ee3e00ac676a0a8424a9e5dbcc440e13c4f82691f7acb25d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebd67d886120c410f90682e520f3834b14e45a526878680d345e8993808fa662
MD5 05ee87a9fc0e9a7ca6be829e64691b8a
BLAKE2b-256 10e607c2b75bbe2edf3f893aae2a63e31ace3e102e2046e34f18253673400f9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 481785a040c83bbacf9dbf9c5e08bfa669eaa07fde09d5e23e5f520e6fa5ffde
MD5 697df6dff87865b4eeb2291abca70d3a
BLAKE2b-256 88f839f28a65e960918008149d96aeacbc817e32ba162c23fdf28d02b4d11b1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 63cc2c6a3e1498f1590f1f986aa04f872771507a7ade2d81b7be041295384aed
MD5 4255daf8fa0b948ef54981aedabdac4c
BLAKE2b-256 030e6dfe4a7c9de06c80fe8a5b67585b8356f4ac454fc1c46b43dffda66fffa5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: krptn-0.8.4-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.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 53bf1663b0297cf0383e0a62b4152b1efaf4ca683ccc5bd3fdbd1c2b535c13fa
MD5 f77fa983e96694c28c182ddac2289ab9
BLAKE2b-256 b38af090dc2cf75af32c1f62412a878f31dcef8ba408a514d20ff1aad3294a4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: krptn-0.8.4-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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 57187f2efe47fe30fbc9b35b6780dabb09ab53951403095a6ef0c283f2ff7474
MD5 6df5576ae02c2d7489c4fc7e66b9815b
BLAKE2b-256 11b28fe766b661b53e7f1ab5003a96b4e36e615401f9ac4a4edc4130077b4369

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 da302aadf147e3c766cb643d90b5ebdf3c1079f06770d632d7e65304d86ecfcd
MD5 a1838b9dae9bbe737f02673d2277b31b
BLAKE2b-256 d1ad01c6f70265b763f7ab1dd01fc898b59d43278f6f063db105fc064b9a5dd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f2043c9c8d47109070b62dc7415695759e0e390aff213b6b4c2c7898d5969b15
MD5 18f64c51b39b2604ae5fb302ca582395
BLAKE2b-256 b154dc45f243140bc57811cee1a644653c089a3e22e13dc60ffb356839f4a163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a464b9cc3bf5c8dca96c7b94766dc3029d429783e0b61dad3c6cd329441d32b
MD5 8db3758a7b4bae9c915660b5cf227c92
BLAKE2b-256 86a26b91cc6ce27eb0a84d045779b1c9e70b814c438ec9e31ddc261e9ab8d3a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78d925f9af237252012869c796d3c2d7e65ada11d188c36d5b99e700fc054068
MD5 af24550b868f481218f5c7eb9d92b8ae
BLAKE2b-256 3d261d839c250aa8292a74d5dac5bb6d3afcd89cc6eb87ed9611faca9c729be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 547629b69a63d619beb26fccce6382b49fd34ffab1ae71ded74261ea60b62535
MD5 aef48142af7a72b650f3ef82c97cc091
BLAKE2b-256 92fe1efa5cd02261161d5cbe0b86ab7d76c14f82efeeb878f6700c12e1790747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3fedaea489e91662339dff8d96aec9bb4c57d31e964ed1c932a4a5d62de35c79
MD5 398d15a46cd4a941eafa4e462f5bb5c0
BLAKE2b-256 bd3fa2cb18d7fd8493367c70d0da84c87927bb14fb0c455c05b707fb2ffe597e

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