Home
last modified time | relevance | path

Searched refs:publicKey (Results 1 – 25 of 38) sorted by path

12

/plugin/adfs/phpsaml/extlib/xmlseclibs/
H A Dxmlseclibs.php1678 $publicKey = XMLSecurityKey::convertRSA($modulus, $exponent);
1679 $objBaseKey->loadKey($publicKey);
/plugin/authgoogle/google/auth/
H A DGoogle_PemVerifier.php24 private $publicKey; variable in Google_PemVerifier
38 $this->publicKey = openssl_x509_read($pem);
39 if (!$this->publicKey) {
45 if ($this->publicKey) {
46 openssl_x509_free($this->publicKey);
60 $status = openssl_verify($data, $signature, $this->publicKey, "sha256");
/plugin/authgooglesheets/vendor/firebase/php-jwt/
H A DREADME.md92 $publicKey = <<<EOD
111 $decoded = JWT::decode($jwt, new Key($publicKey, 'RS256'));
153 $publicKey = openssl_pkey_get_details($privateKey)['key'];
155 $decoded = JWT::decode($jwt, new Key($publicKey, 'RS256'));
174 $publicKey = base64_encode(sodium_crypto_sign_publickey($keyPair));
186 $decoded = JWT::decode($jwt, new Key($publicKey, 'EdDSA'));
/plugin/authgooglesheets/vendor/firebase/php-jwt/src/
H A DJWK.php102 $publicKey = \openssl_pkey_get_public($pem);
103 if (false === $publicKey) {
108 return new Key($publicKey, $jwk['alg']);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1CertInfo.php42 public $publicKey; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1CertInfo
127 public function setPublicKey($publicKey) argument
129 $this->publicKey = $publicKey;
136 return $this->publicKey;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CertificateAuthorityService/
H A DCertificateConfig.php32 public function setPublicKey(PublicKey $publicKey) argument
34 $this->publicKey = $publicKey;
41 return $this->publicKey;
H A DCertificateDescription.php103 public function setPublicKey(PublicKey $publicKey) argument
105 $this->publicKey = $publicKey;
112 return $this->publicKey;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudIot/
H A DDeviceCredential.php46 public function setPublicKey(PublicKeyCredential $publicKey) argument
48 $this->publicKey = $publicKey;
55 return $this->publicKey;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DCloudKMS.php525 'path' => 'v1/{+name}/publicKey',
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudKMS/
H A DImportJob.php174 public function setPublicKey(WrappingPublicKey $publicKey) argument
176 $this->publicKey = $publicKey;
183 return $this->publicKey;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/
H A DBuildSignature.php24 public $publicKey; variable in Google\\Service\\ContainerAnalysis\\BuildSignature
43 public function setPublicKey($publicKey) argument
45 $this->publicKey = $publicKey;
49 return $this->publicKey;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataproc/
H A DInstanceReference.php37 public $publicKey; variable in Google\\Service\\Dataproc\\InstanceReference
84 public function setPublicKey($publicKey) argument
86 $this->publicKey = $publicKey;
93 return $this->publicKey;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dns/
H A DDnsKey.php60 public $publicKey; variable in Google\\Service\\Dns\\DnsKey
195 public function setPublicKey($publicKey) argument
197 $this->publicKey = $publicKey;
204 return $this->publicKey;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SQLAdmin/
H A DGenerateEphemeralCertRequest.php33 public $publicKey; variable in Google\\Service\\SQLAdmin\\GenerateEphemeralCertRequest
60 public function setPublicKey($publicKey) argument
62 $this->publicKey = $publicKey;
69 return $this->publicKey;
H A DSslCertsCreateEphemeralRequest.php33 public $publicKey; variable in Google\\Service\\SQLAdmin\\SslCertsCreateEphemeralRequest
52 public function setPublicKey($publicKey) argument
54 $this->publicKey = $publicKey;
61 return $this->publicKey;
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
H A DVerify.php104 $publicKey = $this->getPublicKey($cert);
106 $args[] = new Key($publicKey, 'RS256');
108 $args[] = $publicKey;
/plugin/authgooglesheets/vendor/google/auth/src/
H A DOAuth2.php408 $resp = $this->jwtDecode($idToken, $publicKey, $allowed_algs);
1446 * @param Key|Key[]|string|string[] $publicKey
1450 private function jwtDecode($idToken, $publicKey, $allowedAlgs) argument
1469 * @param Key|Key[]|string|string[] $publicKey
1473 private function getFirebaseJwtKeys($publicKey, $allowedAlgs) argument
1476 if ($publicKey instanceof Key) {
1477 return [$publicKey];
1483 foreach ((array) $publicKey as $kid => $pubKey) {
1512 if (is_array($publicKey)) {
1515 foreach ($publicKey as $kid => $pubKey) {
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DOpenSSH.php125 list($publicKey, $paddedKey) = Strings::unpackSSH2('ss', $key);
126 list($type) = Strings::unpackSSH2('s', $publicKey);
161 $publicKey = $key;
197 * @param string $publicKey
203 protected static function wrapPrivateKey($publicKey, $privateKey, $password, $options) argument
227 $key = Strings::packSSH2('sssNss', 'none', 'none', '', 1, $publicKey, $paddedKey);
H A DPKCS8.php514 * @param string $publicKey optional
518 … function wrapPrivateKey($key, $attr, $params, $password, $oid = null, $publicKey = '', array $opt… argument
535 if (!empty($publicKey)) {
537 $key['publicKey'] = $publicKey;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDH.php259 $key->publicKey = $key->base->powMod($key->privateKey, $key->prime);
279 … return $public->publicKey->powMod($private->privateKey, $private->prime)->toBytes(true);
359 $new->publicKey = $components['publicKey'];
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys/
H A DPKCS8.php124 …igInteger $prime, BigInteger $base, BigInteger $privateKey, BigInteger $publicKey, $password = '',… argument
146 …public static function savePublicKey(BigInteger $prime, BigInteger $base, BigInteger $publicKey, a… argument
154 $key = ASN1::encodeDER($publicKey, ['type' => ASN1::TYPE_INTEGER]);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/
H A DPrivateKey.php44 protected $publicKey; variable in phpseclib3\\Crypt\\DH\\PrivateKey
56 if (!isset($this->publicKey)) {
57 $this->publicKey = $this->base->powMod($this->privateKey, $this->prime);
60 $key = $type::savePublicKey($this->prime, $this->base, $this->publicKey);
76 if (!isset($this->publicKey)) {
77 $this->publicKey = $this->base->powMod($this->privateKey, $this->prime);
80 …return $type::savePrivateKey($this->prime, $this->base, $this->privateKey, $this->publicKey, $this…
H A DPublicKey.php41 return $type::savePublicKey($this->prime, $this->base, $this->publicKey, $options);
51 return $this->publicKey;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DOpenSSH.php120 $publicKey = self::savePublicKey($p, $q, $g, $y, ['binary' => true]);
123 return self::wrapPrivateKey($publicKey, $privateKey, $password, $options);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DMontgomeryPrivate.php85 public static function savePublicKey(MontgomeryCurve $curve, array $publicKey) argument
87 return strrev($publicKey[0]->toBytes());
100 …on savePrivateKey(BigInteger $privateKey, MontgomeryCurve $curve, array $publicKey, $password = '') argument

12