spryker/propel-encryption-behavior 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

spryker/propel-encryption-behavior

Composer 安装命令:

composer require spryker/propel-encryption-behavior

包简介

Propel Behavior for seamless encryption/decryption of data columns

README 文档

README

Build Status codecov Latest Stable Version Minimum PHP Version PHPStan License

Seamlessly encrypt/decrypt Propel2 data fields. This library is a plugin for the Propel2 ORM framework. The library is a fork of Athens\Encryption.

For example:

// schema.xml

    <table name="my_class">
        <column name="id" type="integer" required="true" primaryKey="true" autoIncrement="true"/>

        <column name="my_data" type="varchar" size="255"/>
        <column name="my_secret_data" type="BLOB"/>
        <column name="my_searchable_data" type="varbinary" size="255"/>

        <behavior name="encryption">
            <parameter name="column_name_1" value="my_secret_data"/>
            <parameter name="searchable_column_name_1" value="my_searchable_data"/>
            <parameter name="searchable" value="false"/>
        </behavior>
    </table>
// Before any database queries:

    use Spryker\PropelEncryptionBehavior\Cipher;
    Cipher::createInstance("mysecretpassphrase");


// In your application:

    $o = new MyClass();

    $o->setMyData("Some data that will remain as plain text.");
    $o->setMySecretData("Some data that will be encrypted.");

    $o->save();

// Later:

    $o = MyClassQuery::create()->findOneByMyData("Some data that will remain as plain text.");

    echo $o->getMySecretData();
    // "Some data that will be encrypted."

    // If you need to use different passphrases in different queries:

    use Spryker\PropelEncryptionBehavior\Cipher;

    Cipher::resetInstance();
    Cipher::createInstance("mysecretpassphrase_2");

    // ... read or write data with another passphrase

Given the table definition above, the string "Some data that will be encrypted." is encrypted in memory before being sent to the database. When we retrieve MySecretData later, the ciphertext is decrypted before being returned.

Note/Tradeoff

spryker/propel-encryption-behavior breaks Propel's native search/find/sort methods on the encrypted field(s). Because the plain-texts of encrypted fields are not available to the database, no database method of search or sort can operate on these fields. A search or sort can only be accomplished by retrieving all rows, decrypting all values, and performing a search/sort on those. If you have many rows and you need to search/sort on encrypted fields, this process may be impractically slow.

Installation

composer require spryker/propel-encryption-behavior

Use

This client library provides a Cipher class and one Propel2 Behavior class.

To designate a field as encrypted in your Propel schema, set its type as VARBINARY, LONGVARBINARY or BLOB and include the encryption behavior. Parameters that define encrypted columns should contain column_name_* prefix in the name attribute. You may include multiple columns in the encryption behavior:

    <table name="my_class">
        <column name="id" type="integer" required="true" primaryKey="true" autoIncrement="true"/>

        <column name="my_data" type="varchar" size="255"/>

        <column name="my_secret_data" type="varbinary" size="255"/>
        <column name="my_secret_data2" type="varbinary" size="255"/>

        <behavior name="encryption">
            <parameter name="column_name_1" value="my_secret_data"/>
            <parameter name="column_name_2" value="my_secret_data2"/>
        </behavior>
    </table>

Then build your models and database as usual.

Before querying the database, you must initialize the Cipher class with your passphrase:

    // Intialize the cipher
    Cipher::createInstance($my_passphrase);

The argument $my_passphrase should be a string of random characters. A length of 32-64 characters is appropriate for your passphrase. Because the cipher is initialized with every page load, the passphrase must be stored on your server in a location accessible to PHP. However, the passphrase should not be in a file which is viewable to web-visitors, and it almost certainly should not be included in your source/version control (git, scm, etc.).

That's it! The class setters for MySecretData and MySecretData2 now seamlessly encrypt their data before it is sent to the database. The class getters for MySecretData and MySecretData2 seamlessly decrypt data after retrieving it from the database.

Remember that search/find and sort are now broken for MySecretData and MySecretData2, for reasons discussed above.

Filtering

By default all encrypted columns are not searchable. It's possible to make all encrypted columns of a table searchable by setting a parameter searchable to true

    <table name="my_class">
        <column name="id" type="integer" required="true" primaryKey="true" autoIncrement="true"/>
        <column name="my_data" type="varchar" size="255"/>
        <column name="my_secret_data" type="varbinary" size="255"/>

        <behavior name="encryption">
            <parameter name="column_name_1" value="my_secret_data"/>
            <parameter name="searchable" value="true"/>
        </behavior>
    </table>

It's also possible to make a particular column as searchable using searchable_column_name_* prefix

    <table name="my_class">
        <column name="id" type="INTEGER" required="true" primaryKey="true" autoIncrement="true"/>
        <column name="my_data" type="VARCHAR" size="255"/>
        <column name="my_secret_data" type="BLOB"/>
        <column name="my_secret_searchable_data" type="VARBINARY" size="255"/>

        <behavior name="encryption">
            <parameter name="column_name_1" value="my_secret_data"/>
            <parameter name="searchable_column_name_1" value="my_secret_searchable_data"/>
        </behavior>
    </table>

Be aware: For the searchable columns will be used a fixed IV. It looses data security.

spryker/propel-encryption-behavior 适用场景与选型建议

spryker/propel-encryption-behavior 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 63.34k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 01 月 24 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 spryker/propel-encryption-behavior 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 spryker/propel-encryption-behavior 我们能提供哪些服务?
定制开发 / 二次开发

基于 spryker/propel-encryption-behavior 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 63.34k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 5
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 42
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-01-24