Home
last modified time | relevance | path

Searched refs:publicKey (Results 26 – 38 of 38) sorted by last modified time

12

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A Dlibsodium.php93 public static function savePublicKey(Ed25519 $curve, array $publicKey) argument
95 return $curve->encodePoint($publicKey);
108 …public static function savePrivateKey(BigInteger $privateKey, Ed25519 $curve, array $publicKey, $p… argument
119 return $privateKey->secret . $curve->encodePoint($publicKey);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DOpenSSH.php134 $publicKey = self::savePublicKey($n, $e, ['binary' => true]);
137 return self::wrapPrivateKey($publicKey, $privateKey, $password, $options);
/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 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/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/File/
H A DX509.php171 private $publicKey; variable in phpseclib3\\File\\X509
1426 * @param string $publicKey
2142 $this->publicKey = $key;
2181 if (isset($this->publicKey)) {
2182 return $this->publicKey;
2289 $this->publicKey = null;
2400 $this->publicKey = null;
2802 $origPublicKey = $this->publicKey;
2805 $this->publicKey = $origPublicKey;
3775 …$format = $this->publicKey instanceof RSA && ($this->publicKey->getPadding() & RSA::SIGNATURE_PSS)…
[all …]
/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/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/adfs/phpsaml/extlib/xmlseclibs/
H A Dxmlseclibs.php1678 $publicKey = XMLSecurityKey::convertRSA($modulus, $exponent);
1679 $objBaseKey->loadKey($publicKey);
/plugin/gtime/gtlib/tsp/
H A DGTPublicationsFile.php306 * @param GTDataHash $publicKey public key hash
311 public function containsPublicKey(GTDataHash $publicKey) { argument
313 if (!$publicKey instanceof GTDataHash) {
319 if ($hash->getHashedMessage() == $publicKey->getHashedMessage() &&
320 $hash->getHashAlgorithm()->getOid() == $publicKey->getHashAlgorithm()->getOid()) {
H A DGTVerifier.php38 * @param resource $publicKey openssl public key to use for verification
41 …ic static function verifyWithSignature(CMSContentInfo $content, GTDataHash $dataHash, $publicKey) { argument
72 $result->update(GTVerifier::verifyCertificate($certificate, $historyTime, $publicKey));
78 $result->update(GTVerifier::verifyPkSignature($timeSignature, $publicKey));
319 * @param resource $publicKey
322 private static function verifyCertificate($certificate, $historyTime, $publicKey) { argument
334 if (empty($publicKey)) {
354 $hash1 = X509Certificate::getPublicKeyHash($publicKey);
370 * @param resource $publicKey
373 private static function verifyPkSignature(GTTimeSignature $timeSignature, $publicKey) { argument
[all …]
/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/botbouncer/lib/
H A Dmollom.php71 private static $publicKey; variable in Mollom
334 if(self::$publicKey === null) throw new Exception('Public key wasn\'t set.');
359 $parameters['public_key'] = self::$publicKey;
747 self::$publicKey = (string) $key;

12