ghost
9 months ago
1 changed files with 26 additions and 0 deletions
@ -0,0 +1,26 @@
@@ -0,0 +1,26 @@
|
||||
<?php |
||||
|
||||
declare(strict_types=1); |
||||
|
||||
namespace Kvazar\Crypto; |
||||
|
||||
class Kevacoin |
||||
{ |
||||
function decode(string $value) |
||||
{ |
||||
if (is_numeric($string) && $string < 0xFFFFFFFF) |
||||
{ |
||||
return mb_chr( |
||||
$string, |
||||
'ASCII' |
||||
); |
||||
} |
||||
|
||||
else |
||||
{ |
||||
return hex2bin( |
||||
$string |
||||
); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue