Skip to content

Doctrine Encrypted Field Bundle permits to encrypt separate fields of database

License

Notifications You must be signed in to change notification settings

Aeliot-Tm/doctrine-encrypted-field

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Doctrine Encrypted Field Bundle

WFS Code Climate maintainability GitHub License

The bundle permits to encrypt separate fields of database.

Installation

Call command line script to install:

composer require aeliot/doctrine-encrypted-field

Integration into project

The package is flexible. You can use single or split secret for data encryption. There is described the simple integration with default settings.

  1. Define environment variable DB_ENCRYPTION_KEY
  2. Generate migration which install custom functions into database
  3. Define column encrypted type of doctrine entity
    use Doctrine\ORM\Mapping as ORM;
    
    #[ORM\Entity()]
    class MyEntity
    {
        //...
    
        #[Orm\Column(type: 'encrypted_string')]
        private string $secret;
    }
  4. Generate migration which convert columns in database and encrypt data.
     use Doctrine\DBAL\Schema\Schema;
     use Doctrine\Migrations\AbstractMigration;
     
     final class Version20240226205039 extends AbstractMigration
     {
         public function up(Schema $schema): void
         {
             $this->addSql('ALTER TABLE my_entity CHANGE secret secret VARBINARY(1024) DEFAULT NOT NULL');
             $this->addSql('UPDATE my_entity SET secret = APP_ENCRYPT(secret) WHERE 1;');
         }
     
         public function down(Schema $schema): void
         {
             $this->addSql('UPDATE my_entity SET secret = APP_DECRYPT(secret) WHERE 1;');
             $this->addSql('ALTER TABLE my_entity CHANGE secret secret VARCHAR(255) DEFAULT NOT NULL');
         }
     }

So, the data will be encrypted in the database and decrypted all over the project code. You don't need to change data type of you field of entity and don't need to make another updates of your project.

Configuration (optional):

You can use bundle without an extra configuration. But the most common one is like this:

aeliot_doctrine_encrypted_field:
    encryption_availability_checker: App\Doctrine\Encryption\EncryptionAvailabilityChecker
    functions_provider: App\Doctrine\Encryption\FunctionsProvider
    secret_provider: App\Doctrine\Encryption\SecretProvider

See example of FunctionProvider for the project with encryption key which divided on two parts:

  • one in the app and is set the database connection session
  • another one is in another database.

Key rotation

  1. Decrypt database by console command:
    bin/console doctrine-encrypted-field:database:decrypt
  2. Change keys
  3. Encrypt database by console command:
    bin/console doctrine-encrypted-field:database:encrypt

Database options

The bundle expects options of database tables:

  • charset: utf8mb4
  • collation: utf8mb4_unicode_ci