Ubiquity 2.5.2
php rapid development framework
Loading...
Searching...
No Matches
Crypt.php
Go to the documentation of this file.
1<?php
3
7
9
10 public static function transform($value) {
11 return EncryptionManager::encrypt($value);
12 }
13
14 public static function reverse($value) {
16 }
17
18 public static function toView($value) {
20 }
21}
static toView($value)
Transforms normalized data to view data.
Definition Crypt.php:18
static transform($value)
Transforms model data to normalized data.
Definition Crypt.php:10
static reverse($value)
Reverse data transforming to model data.
Definition Crypt.php:14
Ubiquity\security\data$EncryptionManager This class is part of Ubiquity.
static decryptString(string $data)
Decrypt the given string.
static encrypt($data)
Encrypt the given data.
Transform an instance for being displayed in a view.