Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • A awesome-python
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 13
    • Issues 13
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 317
    • Merge requests 317
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Vinta Chen
  • awesome-python
  • Merge requests
  • !1094

Add Themis, multi-platform cryptography library

  • Review changes

  • Download
  • Email patches
  • Plain diff
Closed Administrator requested to merge github/fork/vixentael/patch-1 into master Jul 19, 2018
  • Overview 0
  • Commits 1
  • Pipelines 0
  • Changes 1

Created by: vixentael

What is this Python project?

Themis framework is cryptography library for making typical encryption schemes easy to use in the real-world use cases like data at rest, authenticated data exchange, transport protection, authentication, and so on.

What's the difference between this Python project and similar ones?

  • Most libraries require understanding of how cryptographic algorithms work: what is padding, what is IV, minimum key length. Themis is made by cryptographers from Cossack Labs for applied developers: providing strong security, yet hiding complicated crypto-choices from developers.
  • Strong cryptography inside, secure default settings.
  • "Pre-baked" use-cases: special encryption schemes for storing data and for sending data (f.e. no need to rotate transport keys manually, built in forward secrecy).
  • High level functions, cryptography details hidden under the hood (developers don't need to know the difference between AES CBC mode and AES GCM mode to encrypt data).
  • Documentation and examples created for developers, not security experts.
  • Based on known vendors of crypto-primitives like OpenSSL, BoringSSL, and LibreSSL, has a C-core with high-level language wrappers available for many popular languages.
  • Fits complex client-server architectures; has unified APIs across platforms. One encryption library across all stack.
  • Useful for making backends for mobile applications.
  • Tested, supported, audited.
  • GDPR-friendly.
  • Widely used in real-world apps.

--

Anyone who agrees with this pull request could vote for it by adding a 👍 to it, and usually, the maintainer will merge it when votes reach 20.

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: github/fork/vixentael/patch-1