Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
H A DBase64.php83 static::encode6Bits( $b0 >> 2 ) .
84 static::encode6Bits((($b0 << 4) | ($b1 >> 4)) & 63) .
85 static::encode6Bits((($b1 << 2) | ($b2 >> 6)) & 63) .
86 static::encode6Bits( $b2 & 63);
96 static::encode6Bits($b0 >> 2) .
97 static::encode6Bits((($b0 << 4) | ($b1 >> 4)) & 63) .
98 static::encode6Bits(($b1 << 2) & 63);
104 static::encode6Bits( $b0 >> 2) .
105 static::encode6Bits(($b0 << 4) & 63);
252 protected static function encode6Bits(int $src): string function in ParagonIE\\ConstantTime\\Base64
H A DBase64DotSlashOrdered.php70 protected static function encode6Bits(int $src): string function in ParagonIE\\ConstantTime\\Base64DotSlashOrdered
H A DBase64DotSlash.php73 protected static function encode6Bits(int $src): string function in ParagonIE\\ConstantTime\\Base64DotSlash
H A DBase64UrlSafe.php77 protected static function encode6Bits(int $src): string function in ParagonIE\\ConstantTime\\Base64UrlSafe