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

Uploaded PyPy Windows x86-64

krptn-0.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

krptn-0.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

krptn-0.8.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (226.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

krptn-0.8.0-pp39-pypy39_pp73-win_amd64.whl (173.7 kB view details)

Uploaded PyPy Windows x86-64

krptn-0.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

krptn-0.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

krptn-0.8.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (225.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

krptn-0.8.0-cp311-cp311-win_arm64.whl (143.7 kB view details)

Uploaded CPython 3.11 Windows ARM64

krptn-0.8.0-cp311-cp311-win_amd64.whl (175.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

krptn-0.8.0-cp311-cp311-musllinux_1_1_x86_64.whl (803.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

krptn-0.8.0-cp311-cp311-musllinux_1_1_aarch64.whl (751.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

krptn-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

krptn-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (235.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

krptn-0.8.0-cp311-cp311-macosx_11_0_arm64.whl (201.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

krptn-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl (227.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows ARM64

krptn-0.8.0-cp310-cp310-win_amd64.whl (173.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

krptn-0.8.0-cp310-cp310-musllinux_1_1_x86_64.whl (802.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

krptn-0.8.0-cp310-cp310-musllinux_1_1_aarch64.whl (750.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

krptn-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (272.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

krptn-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

krptn-0.8.0-cp310-cp310-macosx_11_0_arm64.whl (200.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

krptn-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl (226.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

krptn-0.8.0-cp39-cp39-win_arm64.whl (142.4 kB view details)

Uploaded CPython 3.9 Windows ARM64

krptn-0.8.0-cp39-cp39-win_amd64.whl (173.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

krptn-0.8.0-cp39-cp39-musllinux_1_1_x86_64.whl (802.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

krptn-0.8.0-cp39-cp39-musllinux_1_1_aarch64.whl (750.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

krptn-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

krptn-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

krptn-0.8.0-cp39-cp39-macosx_11_0_arm64.whl (200.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

krptn-0.8.0-cp39-cp39-macosx_10_9_x86_64.whl (226.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bfa3ebc1d59d02d4a58e2f88d332081ec2974465cb04b4d52983484bab96d303
MD5 00402968a69482f0a37b028dc25fe11f
BLAKE2b-256 d77200dbb3c9c1c6d07ac763c2fefa3e7be94d1fd4c678bd1a1cb8de3891901a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02895606536c02bdf0aba6cd6badb7de2b4a7d3b206b2632fc9d462594b00edf
MD5 630894d3fe8580714baadf844ea949ff
BLAKE2b-256 baf0b4818eab6f042ff82591f32756f060600b2ce5684afb786f6c15c96342ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 113488bced7d6c8726c3c07d7333582df97aba22b9ff646ae87e29b9e1cb4982
MD5 7771e3e1773513bb13c2d185ef5d6b83
BLAKE2b-256 3984aa68fe621ceec55b656f1483d9587fef0753061719545d903c8d00f70131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e300742c8e2cfd8babf0998e3b89ee70c167a2ae9dd8cf61b7c711e68e6f554d
MD5 d0d9c48af4fa6945037423334771400d
BLAKE2b-256 556732b6c8cc7021c9710b377f635c31010a7aeb289c92f971ea17f399e597bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d19c3f54a4060a47dea8a1a631a364c90d6ec4c01b9d57631e5d8815e5a246c3
MD5 bbb59850b7bbbdc2fc3a3f83e6de1c5e
BLAKE2b-256 b24ba439ac0950b158d4b9c086e927b33821913da6608ccf1a524e51e8e1552e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7492c585a0824bf016a6c05d2a2a4f8cd78e1295bb9dcab7fec30b82c6b2b9ed
MD5 8c621595680cca9609a5369b66ce63b0
BLAKE2b-256 2853056815b2ed2cb3df92ed8e1c455192017cf5f0dbfa5360954c2422005557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c914e2df9d09903ff4ad86d12337aa0852ce520e16318a353ceaeb8f104e537
MD5 241804012c97a45b731ada4ff0fd5173
BLAKE2b-256 3da3034f9d95b40ffacbe65e0ddfc656af7b743fdda4c2c54ba1c80a181c0af3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 624c916c978024cd9f4ddb4d90cca84d1c125a0324649e649acd4305ab58ff5a
MD5 214920dc00fd29f8da68cfe7ba28dd25
BLAKE2b-256 fc64b811b59da4b5cd8a08a05a87bd53ec66fedba763dad5b41eda24bf0ff61d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for krptn-0.8.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c75eeef6e326a53930c3fe03854a65068eab16510a6b11b3254c5701671369b1
MD5 e34ed57e8607f9cd6bbc8c7b015c28dd
BLAKE2b-256 c55a810440ef7aacc45e97505851697f55a00fc82a063123b5d568f8dcaee9d3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for krptn-0.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9166126acdc7527cf16db68e43fdc18a7b183e31b11bd7c3162438d2dcff67b8
MD5 4d32365cceb0caefcca550936a44feb0
BLAKE2b-256 bd7cbeb8c6525a367acc040bb3a6d2347cf6980e14d65a12d0dadef6def3c2ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d129ce277cee241f9a0d36f384e4e3285fdf6ee38007e2a2a641c8a17bd2f087
MD5 9eddde6669543838bd240422ef7efc79
BLAKE2b-256 81bd85e1cd1480364cab676f259aa68f2ef57b1c8b5ee0c4369fa0f33209e11b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ac164cbea91dc9997799fa671abda096fba5e0958dff3d19a028eee263ff5343
MD5 a79be4a8b476f1f9882dc40a4fe11e5e
BLAKE2b-256 ed572282f5579b2dd0d3c442f6583cb22b3d44e747ff966c0c2aab8789366ef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2924aa3ce2075096ecbe0543c8d057f48b83b02e98c56aa14d95a5b674aa7d0
MD5 96ea0546d06670c2dcef70b92f1841d1
BLAKE2b-256 3d70d2d4290a1e7e08c7ead781c565b857d7e747e3b80356c6a9d28cfad70677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf6df5caeef784e9d85e7dcc9309302abe94b225e0c6d29bc99df87e862ed0b3
MD5 5f091d53077238ea28992d63d2f8075c
BLAKE2b-256 f1e3e3e1c208685552489325e4acc7e22d9e93b453377f7ebff41c24fa7eb4c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b23751d45e771e802cefda9061c320e896cd44938b125b05929aa606d71ca20c
MD5 eb0a0b844c02d56d6d3080497a5f9c52
BLAKE2b-256 90d56ae77afdf361cad976b1ab419ddf7519084c2dc2499a76d2ff0214751f94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d0a2e6b7f7f8a5b6655c48424b20a2807fe16da953966f351af2865175d1331
MD5 8bb34869530e73780fda68f1955a8f91
BLAKE2b-256 d5ed7219c466e07d563620e022730f51e9f1b149e902ba5308f9115b66024350

See more details on using hashes here.

File details

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

File metadata

  • Download URL: krptn-0.8.0-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.4

File hashes

Hashes for krptn-0.8.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 84ee0ee0fa92cf42b3c2c2edf54537fa7dd9b4d1cef9927c8019cc15ae18bfe1
MD5 affc80ce4455cd282eaa16fb8613df32
BLAKE2b-256 82e1ad18df5308911a2c4d5b1f4b293dc0076947a32f2a257ccd59c191a8cef6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for krptn-0.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 096c4ebce124314aea8d5e79cc8737c3dbd8a36509f67fd1e1452d6eb7f7b117
MD5 4b461f275f1c486ce4356ea6c3db0240
BLAKE2b-256 d0979f8a56c519884235179bbcee4c503de72ad87af3a7c1a76c601c74320ede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 149996e10feac7cf6e42f879dd7a50b8aa8d7c262321ba83b5945555496204e8
MD5 07a7b0b1fec56cfb0d4b1cbe4f95bbcc
BLAKE2b-256 86302a99fe83405a4f843e739d2db404ddc933d07da03a53dfd70331b08b54b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 34b5f044d471ca8eb18738e0bd2589044d6e517fb5e7218a90715b1c2efdeffa
MD5 aa10d86e8056004dc025d286bc40ecd9
BLAKE2b-256 d5a9334ee414884289ccad6af5b49c7d83ba839777015f5995d2a5ffd82e02dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 188030d4aefc335e0327b8e3aa8e39262397529ee19a3a4946bf9b4f7ea02adc
MD5 3a8597eb65f54dbb8c8cf01195706f2d
BLAKE2b-256 955b0ac605e09d885dbcbab3692bb97c7c9aa0e5b2b51d5567a62eea2b7e5ea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6935c979e02b526ffa07de1cec58e0c5f64ae13e9de0fe99ad8623253054e9d4
MD5 fe992bf15ba0c69f97d98ea89156841b
BLAKE2b-256 59fbda13156be108c92419e2a7bdcdbf6fa8fbba9de3ba6fbed8c4fb3ebe034d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c45f0148dd89ade4d14142cd43ca71df404bc66ff2b86a52ec24f8e3c13a822
MD5 4724339df3520c388a42ca3bf565b4e3
BLAKE2b-256 53b10d1972ff2434b5bd46e41dea1e7644734f31cac754b891ae08d1e2f67709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1794c3382f2aede0ac05070688c877da0e708696fbe42c8f6770386a8c983c4c
MD5 fa799cc4425b415609ac7c10090b04f7
BLAKE2b-256 e2e101b4227150bc48a4b3eabbd4aaa882c875cdac44dc7c99a19e99be71b9a8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for krptn-0.8.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 fc239f9de4d084f9bfb14e4fda2356685dafd3f83ed813c94adc70c50622edc4
MD5 e40a500ab4a46ca2a296a5a5a4b07a24
BLAKE2b-256 a792a6a1332a16d37a14696bfa6931c92954edfe7bee8174d0c460a9658df68f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for krptn-0.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1bf230f1c857949ae8a9e774a3a18a89cf1c0f38a48cd3f328e0d0f90948dea0
MD5 59902acae264845ff87499efefa2e1d5
BLAKE2b-256 9c4ada3474eb8d4a4917ad94874f106b810f2c33212efea13aa3d87c70b33d13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d14e2b32e79d23767428c56660df121bb5a57b597373c85f8e117b0f80aba6e4
MD5 0812ed074a581d17c924289dcdc18911
BLAKE2b-256 9f1d3b7959e676dc868d32bada40f4a8658acac4ed2e7bc60abcf878a22e5216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fadba9c3c4f9a684ccd2ed5bce041a107b81fc4907fee3c532a8b9ecdad4e679
MD5 9f29d5d2634a560a49020f6c005a4bd5
BLAKE2b-256 0309c8752a414f1a2fb3e38666041f49b4e04a0e4aac20e0834ba3bc2899d1a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c48f50996bb8ddc7ba1678939972a850149628f83694acad37099da74202a0e
MD5 0451a2579339f4faf1306bc0dd4ae985
BLAKE2b-256 1bd6af67fc50f5fa4309a54e37978135f474ca3a24f9947e47caf9749a51992c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ad1d186746375a072fbf3b379ddf31441c6802dd280a23d7a67a2b276b2c080
MD5 52becf87332ed2939935646b3f0d4598
BLAKE2b-256 3c14e2640bed34274f3ef9ea42b9b665181ad619bf77df6855c093899f1392ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd25922866f4d4adc6e1abb198e04e9ed3a01e4767236a01c93bba718a33ae20
MD5 6e179c88e2375c386deedb313aa1fcbf
BLAKE2b-256 0425f07562499dd5f4b980d03d801c6bff44e96f5f557aebb915d5abdc8553e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for krptn-0.8.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a452668921f623b2b4766d23db3e0fb8ea971968fd227856852c668e44dda9a
MD5 c1013d645e5a33e5da79e11e20978f36
BLAKE2b-256 5b80147163056b31f76ac6b623d17c12c69acd5a0d820b85ca22a8f9f692ecdb

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