-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.power
More file actions
37 lines (34 loc) · 842 Bytes
/
code.power
File metadata and controls
37 lines (34 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* Encrypt a string as needed
*
* @param string $string The string to encrypt
* @param string $key The encryption key
*
* @return string
* @since 3.2.0
**/
public function encrypt(string $string, string $key): string
{
// Get the encryption object.
$aes = new Aes($key, 128);
return $aes->decryptString($string);
}
/**
* Decrypt a string as needed
*
* @param string $string The string to decrypt
* @param string $key The decryption key
*
* @return string|null
* @since 3.2.0
**/
public function decrypt(string $string, string $key): ?string
{
// Get the encryption object.
$aes = new Aes($key, 128);
try {
return $aes->decryptString($string);
} catch (\Exception $ex) {
return null;
}
}