All Projects → paragonie → Ciphersweet

paragonie / Ciphersweet

Licence: other
Fast, searchable field-level encryption for PHP projects

Projects that are alternatives of or similar to Ciphersweet

flame
Flame is an ActionScript library that provides a number of useful UI controls, collections, cryptographic services, and utilities to work with the Flex SDK.
Stars: ✭ 18 (-93.98%)
Mutual labels:  encryption
Xorencryption
XOR encryption implementations for several languages.
Stars: ✭ 266 (-11.04%)
Mutual labels:  encryption
Wire Ios
📱 Wire for iOS (iPhone and iPad)
Stars: ✭ 3,079 (+929.77%)
Mutual labels:  encryption
vmecs
A simple VMess proxy implementation written in C.
Stars: ✭ 28 (-90.64%)
Mutual labels:  encryption
My Talks
List of my talks and workshops: security engineering, applied cryptography, secure software development
Stars: ✭ 261 (-12.71%)
Mutual labels:  encryption
Bluntly
serverless, encrypted, NAT-breaking p2p connections - DEPRECATED
Stars: ✭ 270 (-9.7%)
Mutual labels:  encryption
ProTecT
ProTecT is an MS-DOS packer. While this packer is outdated, it uses a number of interesting anti-analysis techniques that are still relevant today.
Stars: ✭ 28 (-90.64%)
Mutual labels:  encryption
Aes Rsa Java
AES+RSA结合应用java示例
Stars: ✭ 295 (-1.34%)
Mutual labels:  encryption
Cloaker
Simple, drag-and-drop, password-based file encryption
Stars: ✭ 267 (-10.7%)
Mutual labels:  encryption
Ssh Vault
🌰 encrypt/decrypt using ssh keys
Stars: ✭ 277 (-7.36%)
Mutual labels:  encryption
Nfreezer
nFreezer is an encrypted-at-rest backup tool.
Stars: ✭ 259 (-13.38%)
Mutual labels:  encryption
Rocketjob
Ruby's missing background and batch processing system
Stars: ✭ 258 (-13.71%)
Mutual labels:  encryption
Msoffcrypto Tool
Python tool and library for decrypting MS Office files with passwords or other keys
Stars: ✭ 274 (-8.36%)
Mutual labels:  encryption
etesync-notes
An EteSync backed note taking app
Stars: ✭ 64 (-78.6%)
Mutual labels:  encryption
Chatsecure Ios
ChatSecure is a free and open source encrypted chat client for iOS that supports OTR and OMEMO encryption over XMPP.
Stars: ✭ 3,044 (+918.06%)
Mutual labels:  encryption
use-dencrypt-effect
⚛ A custom React hook generating crypting text effect.
Stars: ✭ 39 (-86.96%)
Mutual labels:  encryption
Crypter
Crypter - Python3 based builder and ransomware compiled to Windows executable using PyInstaller
Stars: ✭ 268 (-10.37%)
Mutual labels:  encryption
Veracrypt
Disk encryption with strong security based on TrueCrypt
Stars: ✭ 3,674 (+1128.76%)
Mutual labels:  encryption
Awesome Cryptography
A curated list of cryptography resources and links.
Stars: ✭ 3,475 (+1062.21%)
Mutual labels:  encryption
Portwarden
Create Encrypted Backups of Your Bitwarden Vault with Attachments
Stars: ✭ 274 (-8.36%)
Mutual labels:  encryption

CipherSweet

Linux Build Status Latest Stable Version Latest Unstable Version License Downloads

CipherSweet is a backend library developed by Paragon Initiative Enterprises for implementing searchable field-level encryption.

Requires PHP 5.5+, although 7.2 is recommended for better performance.

Before adding searchable encryption support to your project, make sure you understand the appropriate threat model for your use case. At a minimum, you will want your application and database server to be running on separate cloud instances / virtual machines. (Even better: Separate bare-metal hardware.)

CipherSweet is available under the very permissive ISC License which allows you to use CipherSweet in any of your PHP projects, commercial or noncommercial, open source or proprietary, at no cost to you.

CipherSweet Features at a Glance

  • Encryption that targets the 256-bit security level (using AEAD modes with extended nonces to minimize users' rekeying burden).
  • Compliance-Specific Protocol Support. Multiple backends to satisfy a diverse range of compliance requirements. More can be added as needed:
    • ModernCrypto uses libsodium, the de facto standard encryption library for software developers. Algorithm details.
    • FIPSCrypto only uses the cryptographic algorithms covered by the FIPS 140-2 recommendations to avoid auditing complexity. Algorithm details.
  • Key separation. Each column is encrypted with a different key, all of which are derived from your master encryption key using secure key-splitting algorithms.
  • Key management integration. CipherSweet supports integration with Key Management solutions for storing and retrieving the master encryption key.
  • Searchable Encryption. CipherSweet uses blind indexing with the fuzzier and Bloom filter strategies to allow fast ciphertext search with minimal data leakage.
    • Each blind index on each column uses a distinct key from your encryption key and each other blind index key.
    • This doesn't allow for LIKE operators or regular expression searching, but it does allow you to index transformations (e.g. substrings) of the plaintext, hashed under a distinct key.
  • Adaptability. CipherSweet has a database- and product-agnostic design, so it should be easy to write an adapter to use CipherSweet in any PHP-based software.
  • File/stream encryption. CipherSweet has an API for encrypting files (or other PHP streams) that provides authenticated encryption that defeats TOCTOU attacks with minimal overhead. Learn more.

Installing CipherSweet

Use Composer.

composer require paragonie/ciphersweet

Using CipherSweet

Please refer to the documentation to learn how to use CipherSweet.

Security experts may be interested in the security properties of our design.

Integration Support

Please feel free to create an issue if you'd like to integrate CipherSweet with your software.

CipherSweet in Other Languages

Why "CipherSweet"?

CipherSweet was originally intended for use in SuiteCRM (a fork of the SugarCRM Community Edition) and related products, although there is nothing preventing its use in other products.

Therefore, we opted for a pun on "ciphersuite" that pays homage to the open source heritage of the project we designed this library for.

If the wordplay is too heavy, feel free to just call it "Sweet", or juxtapose the two component nouns and call it "SweetCipher" in spoken conversation.

Support Contracts

If your company uses this library in their products or services, you may be interested in purchasing a support contract from Paragon Initiative Enterprises.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].