Home
last modified time | relevance | path

Searched refs:decodeUpper (Results 1 – 3 of 3) sorted by relevance

/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
H A DRFC4648.php118 return Base32::decodeUpper($str, true);
146 return Base32::decodeUpper($str, true);
H A DEncoding.php79 return Base32::decodeUpper($str);
127 return Base32Hex::decodeUpper($str);
H A DBase32.php55 public static function decodeUpper(string $src, bool $strictPadding = false): string function in ParagonIE\\ConstantTime\\Base32