Example #1
0
 public function encodeBytes($bytes)
 {
     $base64 = parent::encodeBytes($bytes)->toString();
     $remaining = 4 - _hx_mod(strlen($base64), 4);
     while ($remaining > 0 && $remaining < 3) {
         $base64 .= "=";
         --$remaining;
     }
     return haxe_io_Bytes::ofString($base64);
 }
Example #2
0
 public function __construct()
 {
     if (!php_Boot::$skip_constructor) {
         parent::__construct(haxe_io_Bytes::ofString("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"));
     }
 }
 static function decode($s, $base)
 {
     $b = new haxe_BaseCode(haxe_io_Bytes::ofString($base));
     return $b->decodeString($s);
 }