2017 © Pedro Peláez
 

cakephp-plugin encryption-support

CakePHP EncryptionSupport

image

satthi/encryption-support

CakePHP EncryptionSupport

  • Wednesday, July 15, 2015
  • by satthi
  • Repository
  • 1 Watchers
  • 0 Stars
  • 340 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 5 % Grown

The README.md


EncriptionSupportPlugin, (*1)

このプラグインは可逆暗号化支援のプラグインです。, (*2)


使い方, (*3)

①composerにてインストール, (*4)

"require": {
    "satthi/encryption-support": "3.0"
},

②該当Table及びEntityに以下を記述(必要分しか記載していません), (*5)

Table, (*6)

<?php

class AccountsTable extends Table
{

    public function initialize(array $config)
    {
        //behavior読み込み
        $this->addBehavior('EncryptionSupport.Encryption');
    }

Entity, (*7)

<?php
//Traitの読み込み
use EncryptionSupport\Model\Entity\EncryptionTrait;

/**
 * Account Entity.
 */
class Account extends Entity
{
//Traitの読み込み
use EncryptionTrait;

    public $encryptConfig = [
        'type' => 'default',
        'fields' => [
            //暗号化を行いたいフィールド
            'name'
        ],
    ];

    //&getメソッドをoverride
    public function &__get($property){
        $value = parent::__get($property);

        $value = $this->getDecrypt($property, $value);

        return $value;
    }

    //setメソッドをoverride

    public function set($property, $value = null, array $options = []){

        parent::set($property, $value , $options);

        $this->setEncrypt();
        return $this;
    }

bootstrap.php, (*8)

<?php
//適当なキー
define('ENCRYPTION_KEY','7UniidVg5tFIXcVjyEDmeRPAXzqWc55OEJqdsJXSejfHwyeAICSkYMjgNqPow2ke');

License

The MIT Lisence, (*9)

Copyright (c) 2013 Fusic Co., Ltd. (http://fusic.co.jp), (*10)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:, (*11)

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software., (*12)

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE., (*13)

Author

Satoru Hagiwara, (*14)

The Versions

15/07 2015

dev-master

9999999-dev https://github.com/satthi/EncryptionSupport

CakePHP EncryptionSupport

  Sources   Download

MIT

The Requires

 

The Development Requires

by Satoru Hagiwara

cakephp encrypt

15/07 2015

dev-cake3

dev-cake3 https://github.com/satthi/EncryptionSupport

CakePHP EncryptionSupport

  Sources   Download

MIT

The Requires

 

The Development Requires

by Satoru Hagiwara

cakephp encrypt

29/06 2015

3.0

3.0.0.0 https://github.com/satthi/EncryptionSupport

CakePHP EncryptionSupport

  Sources   Download

MIT

The Requires

 

by Satoru Hagiwara

cakephp encrypt