Home
last modified time | relevance | path

Searched refs:keyMaterial (Results 1 – 2 of 2) sorted by relevance

/plugin/authgooglesheets/vendor/firebase/php-jwt/src/
H A DKey.php13 private $keyMaterial; variable in Firebase\\JWT\\Key
18 * @param string|resource|OpenSSLAsymmetricKey|OpenSSLCertificate $keyMaterial
22 $keyMaterial, argument
26 !is_string($keyMaterial)
27 && !$keyMaterial instanceof OpenSSLAsymmetricKey
28 && !$keyMaterial instanceof OpenSSLCertificate
29 && !is_resource($keyMaterial)
34 if (empty($keyMaterial)) {
43 $this->keyMaterial = $keyMaterial;
62 return $this->keyMaterial;
H A DJWT.php274 …* @param string|resource|OpenSSLAsymmetricKey|OpenSSLCertificate $keyMaterial For HS*, a string k…
284 $keyMaterial, argument
294 … $success = \openssl_verify($msg, $signature, $keyMaterial, $algorithm); // @phpstan-ignore-line
308 if (!is_string($keyMaterial)) {
313 $lines = array_filter(explode("\n", $keyMaterial));
321 if (!is_string($keyMaterial)) {
324 $hash = \hash_hmac($algorithm, $msg, $keyMaterial, true);