awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
sqlcipher avatar

sqlcipher/sqlcipher

0
View on GitHub↗
7,173 estrellas·1,390 forks·C·BSD-3-Clause·4 vistaswww.zetetic.net/sqlcipher↗

Sqlcipher

SQLCipher is an encrypted SQLite database engine and secure relational database that provides transparent AES-256 encryption for database files and stored data. It functions as a cryptographic storage engine that requires a passphrase or binary key to unlock and access content.

The engine ensures data confidentiality through page-level encryption and protects data integrity using cryptographic hashes to detect unauthorized modifications. It includes capabilities for encryption key rotation to update passphrases and secure memory locking to prevent sensitive keys from being swapped from RAM to disk.

The project covers a broad set of capabilities including database file management, SQL query execution via a command-line interface, and support for external engine extensions. It also provides mechanisms for cross-database data migration and database format migration to maintain compatibility between versions.

The source code can be compiled into a functional engine or command-line tool for Unix and Windows platforms using a C compiler.

Features

  • Database Page Encryption - Provides transparent AES-256 encryption of individual database pages to ensure data is unreadable without the key.
  • Secure - Ensures sensitive information is stored securely using cryptographic verification and memory locking to prevent leaks.
  • Encrypted Implementations - Provides an encrypted extension of the SQLite engine with transparent 256-bit AES encryption.
  • Relational Data Stores - Implements a relational data store that requires cryptographic keys to unlock and access structured content.
  • Storage Engine Forks - Extends the standard SQLite B-tree and pager logic to integrate transparent encryption directly into the storage layer.
  • Cryptographic - Provides a specialized storage engine that protects data integrity via page hashes and prevents key leakage through secure memory handling.
  • Encrypted Database Managers - Provides an interface for creating and accessing password-protected database files using high-grade encryption.
  • Local Data Storage - Enables secure local persistence of application data using passphrase-based encryption and key derivation.
  • Passphrase-Based Database Access - Requires a passphrase or binary key through key derivation to unlock and access encrypted database content.
  • Key Derivation Functions - Uses key derivation functions to transform user passphrases into strong cryptographic keys for database encryption.
  • Integrity Verifications - Implements page-level HMACs to detect unauthorized modifications or data corruption within the database file.
  • SQL Query Execution - Enables the execution, formatting, and management of SQL queries through a terminal interface or batch scripts.
  • Memory Locking - Prevents sensitive encryption keys from being swapped to disk by locking memory pages in the OS.
  • Application Data Security - Provides a secure way to store application settings and user data in encrypted files to prevent unauthorized access.
  • Cryptographic Providers - Supports pluggable cryptographic providers, allowing the engine to use different compliant encryption libraries at build time.
  • Data Protection - Protects sensitive information by detecting unauthorized tampering and sanitizing memory to prevent leaks.
  • Encryption Key Management - Provides capabilities for updating the security keys or passphrases of an existing encrypted database.
  • Data Persistence - Provides 256-bit AES encryption for SQLite databases.
  • Seguridad y privacidad - Provides AES-256 encryption for SQLite database files.

Historial de estrellas

Gráfico del historial de estrellas de sqlcipher/sqlcipherGráfico del historial de estrellas de sqlcipher/sqlcipher

Búsqueda con IA

Explora más repositorios increíbles

Describe lo que necesitas en lenguaje sencillo: la IA clasifica miles de proyectos open-source curados por relevancia.

Start searching with AI

Preguntas frecuentes

¿Qué hace sqlcipher/sqlcipher?

SQLCipher is an encrypted SQLite database engine and secure relational database that provides transparent AES-256 encryption for database files and stored data. It functions as a cryptographic storage engine that requires a passphrase or binary key to unlock and access content.

¿Cuáles son las características principales de sqlcipher/sqlcipher?

Las características principales de sqlcipher/sqlcipher son: Database Page Encryption, Secure, Encrypted Implementations, Relational Data Stores, Storage Engine Forks, Cryptographic, Encrypted Database Managers, Local Data Storage.

¿Qué alternativas de código abierto existen para sqlcipher/sqlcipher?

Las alternativas de código abierto para sqlcipher/sqlcipher incluyen: tryghost/node-sqlite3 — node-sqlite3 is a relational database client and a set of native bindings that allow Node.js applications to interact… pyca/cryptography — This project is a Python cryptography library that provides a collection of cryptographic primitives and high-level… ccgus/fmdb — fmdb is an object-oriented SQLite database library and persistence layer for native macOS and iOS environments. It… rusqlite/rusqlite — Rusqlite is an embedded database interface and relational database driver that provides a client library for… prestodb/presto — Presto is a distributed SQL query engine designed for high-performance analytical processing across heterogeneous data… krzyzanowskim/cryptoswift — CryptoSwift is a cryptography library implemented entirely in the Swift programming language. It provides a collection…

Alternativas open-source a Sqlcipher

Proyectos open-source similares, clasificados según cuántas características comparten con Sqlcipher.
  • tryghost/node-sqlite3Avatar de TryGhost

    TryGhost/node-sqlite3

    6,417Ver en GitHub↗

    node-sqlite3 is a relational database client and a set of native bindings that allow Node.js applications to interact with SQLite databases. It functions as a C++ native addon, linking JavaScript to the SQLite C library to manage data stored in local files or in-memory stores. The project includes optional support for SQLCipher, enabling page-level encryption to secure local database files. The driver covers a wide range of database management capabilities, including executing SQL queries with parameter binding, managing connections to database files, and preparing statements for repeated ex

    PLpgSQL
    Ver en GitHub↗6,417
  • pyca/cryptographyAvatar de pyca

    pyca/cryptography

    7,628Ver en GitHub↗

    This project is a Python cryptography library that provides a collection of cryptographic primitives and high-level recipes for implementing secure encryption and authentication. It functions as a symmetric encryption toolkit and a cryptographic hash provider, offering both a low-level cryptographic interface for building custom protocols and high-level tools for securing data. The library covers a broad range of security capabilities, including symmetric data encryption, the derivation of cryptographic keys from passwords or secret values, and data integrity verification through the generati

    Pythoncryptographypython
    Ver en GitHub↗7,628
  • ccgus/fmdbAvatar de ccgus

    ccgus/fmdb

    13,851Ver en GitHub↗

    fmdb is an object-oriented SQLite database library and persistence layer for native macOS and iOS environments. It provides an Objective-C wrapper that encapsulates the low-level C API, allowing applications to manage local relational data storage and embedded database connections through a high-level interface. The library focuses on thread-safe database access by synchronizing operations across multiple threads using serialized queues to prevent data corruption and race conditions. It includes specialized capabilities for secure local storage, such as database encryption and the management

    Objective-C
    Ver en GitHub↗13,851
  • rusqlite/rusqliteAvatar de rusqlite

    rusqlite/rusqlite

    4,058Ver en GitHub↗

    Rusqlite is an embedded database interface and relational database driver that provides a client library for interacting with SQLite. It functions as an SQL query wrapper, enabling the management of local file-based or in-memory databases through a safe interface. The library allows for the extension of native database capabilities by implementing custom scalar functions, collations, and virtual tables. It also supports the embedding of the database engine directly into the application binary to remove external library dependencies. The project covers a broad range of capabilities including

    Rustbindingsrustsqlite
    Ver en GitHub↗4,058
  • Ver las 30 alternativas a Sqlcipher→