mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 21:19:21 +03:00
Cleanup MailSo Validator
Cleanup removed features
This commit is contained in:
parent
8fe8369b2a
commit
1009398d0c
15 changed files with 65 additions and 192 deletions
|
|
@ -87,7 +87,7 @@ class Crypt
|
|||
private static function XxteaDecrypt(string $sEncryptedString, string $sKey) : string
|
||||
{
|
||||
if (\is_callable('xxtea_decrypt')) {
|
||||
return xxtea_decrypt($sString, $sKey);
|
||||
return xxtea_decrypt($sEncryptedString, $sKey);
|
||||
}
|
||||
|
||||
$aV = self::str2long($sEncryptedString, false);
|
||||
|
|
@ -166,6 +166,6 @@ class Crypt
|
|||
|
||||
private static function int32(int $iN) : int
|
||||
{
|
||||
return ($n & 0xffffffff);
|
||||
return $iN & 0xffffffff;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue