Home
last modified time | relevance | path

Searched refs:encode6Bits (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/vendor/paragonie/constant_time_encoding/src/
DBase64.php97 static::encode6Bits( $b0 >> 2 ) .
98 static::encode6Bits((($b0 << 4) | ($b1 >> 4)) & 63) .
99 static::encode6Bits((($b1 << 2) | ($b2 >> 6)) & 63) .
100 static::encode6Bits( $b2 & 63);
110 static::encode6Bits($b0 >> 2) .
111 static::encode6Bits((($b0 << 4) | ($b1 >> 4)) & 63) .
112 static::encode6Bits(($b1 << 2) & 63);
118 static::encode6Bits( $b0 >> 2) .
119 static::encode6Bits(($b0 << 4) & 63);
301 protected static function encode6Bits(int $src): string function in ParagonIE\\ConstantTime\\Base64
DBase64DotSlashOrdered.php70 protected static function encode6Bits(int $src): string function in ParagonIE\\ConstantTime\\Base64DotSlashOrdered
DBase64DotSlash.php73 protected static function encode6Bits(int $src): string function in ParagonIE\\ConstantTime\\Base64DotSlash
DBase64UrlSafe.php77 protected static function encode6Bits(int $src): string function in ParagonIE\\ConstantTime\\Base64UrlSafe