Searched refs:strictPadding (Results 1 – 4 of 4) sorted by relevance
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/ |
H A D | Base32.php | 40 * @param bool $strictPadding 43 public static function decode(string $encodedString, bool $strictPadding = false): string argument 45 return static::doDecode($encodedString, false, $strictPadding); 52 * @param bool $strictPadding 55 public static function decodeUpper(string $src, bool $strictPadding = false): string argument 57 return static::doDecode($src, true, $strictPadding); 191 * @param bool $strictPadding 196 …protected static function doDecode(string $src, bool $upper = false, bool $strictPadding = false):… argument 208 if ($strictPadding) {
|
H A D | EncoderInterface.php | 48 * @param bool $strictPadding Error on invalid padding 51 public static function decode(string $encodedString, bool $strictPadding = false): string; argument
|
H A D | Hex.php | 94 * @param bool $strictPadding 98 public static function decode(string $encodedString, bool $strictPadding = false): string argument 106 if ($strictPadding) {
|
H A D | Base64.php | 120 * @param bool $strictPadding 126 public static function decode(string $encodedString, bool $strictPadding = false): string argument 134 if ($strictPadding) { 199 } elseif ($strictPadding) {
|