mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 08:11:24 +05:30
27 lines
680 B
PHP
27 lines
680 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace api\components\OAuth2;
|
|
|
|
use Yii;
|
|
|
|
/**
|
|
* This trait is intended to override the standard data encryption behavior
|
|
* with the help of \Defuse\Crypto\Crypto class, because the resultant string
|
|
* is much larger than the original one.
|
|
*
|
|
* The implementation under the hood relies on using libsodium library
|
|
* that provides more compact result values.
|
|
*/
|
|
trait CryptTrait {
|
|
|
|
protected function encrypt($unencryptedData): string {
|
|
return Yii::$app->tokens->encryptValue($unencryptedData);
|
|
}
|
|
|
|
protected function decrypt($encryptedData): string {
|
|
return Yii::$app->tokens->decryptValue($encryptedData);
|
|
}
|
|
|
|
}
|