Home
last modified time | relevance | path

Searched refs:publicKey (Results 26 – 38 of 38) sorted by relevance

12

/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/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/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()) {
/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/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/google/apiclient/src/AccessToken/
H A DVerify.php104 $publicKey = $this->getPublicKey($cert);
106 $args[] = new Key($publicKey, 'RS256');
108 $args[] = $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/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;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
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/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/google/apiclient-services/src/
H A DCloudKMS.php525 'path' => 'v1/{+name}/publicKey',
/plugin/adfs/phpsaml/extlib/xmlseclibs/
H A Dxmlseclibs.php1678 $publicKey = XMLSecurityKey::convertRSA($modulus, $exponent);
1679 $objBaseKey->loadKey($publicKey);
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js70999 module.exports = function publicEncrypt(publicKey, msg, reverse) {
71002 if (publicKey.padding) {
71003 padding = publicKey.padding;
71010 var key = parseKeys(publicKey);

12