Home
last modified time | relevance | path

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

/dokuwiki/vendor/paragonie/constant_time_encoding/src/
H A DBase64.php142 static::encode6Bits( $b0 >> 2 ) .
143 static::encode6Bits((($b0 << 4) | ($b1 >> 4)) & 63) .
144 static::encode6Bits((($b1 << 2) | ($b2 >> 6)) & 63) .
145 static::encode6Bits( $b2 & 63);
155 static::encode6Bits($b0 >> 2) .
156 static::encode6Bits((($b0 << 4) | ($b1 >> 4)) & 63) .
157 static::encode6Bits(($b1 << 2) & 63);
163 static::encode6Bits( $b0 >> 2) .
164 static::encode6Bits(($b0 << 4) & 63);
363 protected static function encode6Bits(int $src): string function in ParagonIE\\ConstantTime\\Base64
H A DBase64DotSlashOrdered.php74 protected static function encode6Bits(int $src): string function in ParagonIE\\ConstantTime\\Base64DotSlashOrdered
H A DBase64DotSlash.php77 protected static function encode6Bits(int $src): string function in ParagonIE\\ConstantTime\\Base64DotSlash
H A DBase64UrlSafe.php81 protected static function encode6Bits(int $src): string function in ParagonIE\\ConstantTime\\Base64UrlSafe