For outil de chiffrement des secrets git, the strongest matches are stackexchange/blackbox (Blackbox is a GPG-based secret management tool that integrates), agwa/git-crypt (git-crypt is a transparent encryption layer for Git that) and sobolevn/git-secret (git-secret is a bash tool that encrypts files with). Each is ranked by relevance to your query, popularity and recent activity.
Ces utilitaires chiffrent les identifiants et fichiers de configuration sensibles avant qu'ils ne soient poussés dans le contrôle de version.
Blackbox is a GPG secret management tool and asymmetric encryption wrapper used to securely store and share sensitive files within version control systems like Git, Mercurial, or Subversion. It functions as a version control secret store that encrypts files for safe storage at rest while allowing authorized users and machines to decrypt them. The system distinguishes itself by integrating directly with version control to provide plaintext diff and log visualization of encrypted files. It supports multi-recipient encryption and automated secret decryption via passphrase-less GPG subkeys, enabl
Blackbox is a GPG-based secret management tool that integrates with Git to encrypt sensitive files for safe storage and automatically decrypt them for authorized users, making it a direct fit for the visitor's requested encrypted-Git-secrets-manager category.
git-crypt is a transparent cryptography layer and secret manager for Git repositories. It encrypts specific files so they remain as ciphertext on remote servers while appearing as plaintext in local directories. The tool uses Git attributes to define the scope of files and directories targeted for encryption. It supports both symmetric secret key encryption for shared access and asymmetric public key encryption to control decryption permissions among multiple collaborators. The system automates the encryption and decryption process through hook-based filters that trigger during commit and ch
git-crypt is a transparent encryption layer for Git that automatically encrypts specified files on commit and decrypts them on checkout, covering the core workflow you described with support for both symmetric and asymmetric key management.
git-secret is a command line tool and Bash encryption utility used to manage sensitive configuration files and passwords within Git repositories. It enables version controlled secret storage by encrypting files with GPG public keys, ensuring that sensitive data can be committed to a repository without exposing plaintext. The tool utilizes a PGP encryption workflow to control access through a managed keyring of authorized public keys. This allows for the granting and revocation of decryption permissions for specific users. To prevent accidental data leaks, it automatically integrates with Git
git-secret is a bash tool that encrypts files with GPG and stores them safely inside a Git repository, decrypting on checkout — it directly matches your need for a Git-integrated encrypted secrets manager with multiple key support.