Quantcast
Channel: Live News for Yii Framework
Viewing all articles
Browse latest Browse all 2941

[extension] yagas/yii2-actionfilter-rsa

$
0
0

RSA ActionFilter

  1. Installation
  2. Usage

RSA Verify Filter

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist yagas/yii2-actionfilter-rsa "*"

or add

"yagas/yii2-actionfilter-rsa": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

SiteController extends Controller {
    public function behaviors()
    {
      return [
        'rsa_filter' => [
            'class' => ActionFilterRsa::class,
            'publicKey' => '@app/runtime/resource/publicKey.pem',
            'funHandle' => new MyHandle()
        ]
      ];
    }
}

Viewing all articles
Browse latest Browse all 2941

Trending Articles