Home
last modified time | relevance | path

Searched refs:private (Results 1 – 25 of 241) sorted by path

12345678910

/plugin/adfs/phpsaml/
H A DREADME.md197 the x509 cert and the private key that the SP will use:
200 * `sp.key` - The private key of the SP
1422 * `getSPkey` - Returns the x509 private key of the SP.
1435 * `formatSPKey` - Formats the SP private key.
1461 * `formatPrivateKey` - returns a RSA private key (adding header & footer if required).
/plugin/airtable/
H A DLICENSE95 computer or modifying a private copy. Propagation includes copying,
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.min.js.map1private\n\t * @param {*} value The value to compare to `other`.\n\t * @param {*} other The val…
/plugin/authgoogle/google/contrib/
H A DGoogle_CalendarService.php1515 public $private; variable in Google_EventExtendedProperties
1517 public function setPrivate( $private) { argument
1518 $this->private = $private;
/plugin/authgooglesheets/vendor/firebase/php-jwt/
H A DREADME.md132 // Your private key file with passphrase
136 // Create a private key of type "resource"
152 // Get public key from the private key, or pull from from a file.
165 // Public and private keys are expected to be Base64 encoded. The last
310 New Lines in private keys
313 If your private key contains `\n` characters, be sure to wrap it in double quotes `""`
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Calendar/
H A DEventExtendedProperties.php25 public $private; variable in Google\\Service\\Calendar\\EventExtendedProperties
34 public function setPrivate($private) argument
36 $this->private = $private;
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DREADME.md493 into and modify the private properties of promises of the same type. While this
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md247 private $callback;
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md385 * Added $host to HipChatHandler for users of private instances
/plugin/authgooglesheets/vendor/paragonie/random_compat/other/
H A Dbuild_phar.php37 $private = openssl_get_privatekey($pkeyFile); variable
38 if ($private !== false) {
40 openssl_pkey_export($private, $pkey);
47 $details = openssl_pkey_get_details($private);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPKCS8.php451 $private = ASN1::asn1map($decoded[0], Maps\OneAsymmetricKey::MAP);
452 if (is_array($private)) {
453 …if (isset($private['privateKeyAlgorithm']['parameters']) && !$private['privateKeyAlgorithm']['para…
455 …$private['privateKeyAlgorithm']['parameters'] = new ASN1\Element(substr($key, $temp['start'], $tem…
458 if (!in_array($private['privateKeyAlgorithm']['algorithm'], static::OID_NAME)) {
459 …throw new UnsupportedAlgorithmException($private['privateKeyAlgorithm']['algorithm'] . ' is not a …
462 if ($private['privateKeyAlgorithm']['algorithm'] != static::OID_NAME) {
466 if (isset($private['publicKey'])) {
467 if ($private['publicKey'][0] != "\0") {
470 $private['publicKey'] = substr($private['publicKey'], 1);
[all …]
H A DPuTTY.php270 $private = $crypto->decrypt($private);
273 $source .= Strings::packSSH2('s', $private);
282 $components['private'] = $private;
292 * @param string $private
317 $source .= Strings::packSSH2('s', $private);
328 $private .= Random::string(16 - (strlen($private) & 15));
329 $source .= Strings::packSSH2('s', $private);
358 $private = $crypto->encrypt($private);
362 $private = Base64::encode($private);
363 $key .= 'Private-Lines: ' . ((strlen($private) + 63) >> 6) . "\r\n";
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDH.php266 * @param PrivateKey|EC $private
271 public static function computeSecret($private, $public) argument
273 if ($private instanceof PrivateKey) { // DH\PrivateKey
276 … if (!$private->prime->equals($public->prime) || !$private->base->equals($public->base)) {
279 … return $public->publicKey->powMod($private->privateKey, $private->prime)->toBytes(true);
284 return $public->powMod($private->privateKey, $private->prime)->toBytes(true);
290 if ($private instanceof EC\PrivateKey) {
296 $point = $private->multiply($public);
297 switch ($private->getCurve()) {
H A DDSA.php210 $private = new PrivateKey();
211 $private->p = $params->p;
212 $private->q = $params->q;
213 $private->g = $params->g;
215 $private->x = BigInteger::randomRange(self::$one, $private->q->subtract(self::$one));
216 $private->y = $private->g->powMod($private->x, $private->p);
221 return $private
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DPuTTY.php70 list($x) = Strings::unpackSSH2('i', $private);
95 $private = Strings::packSSH2('i', $x);
97 return self::wrapPrivateKey($public, $private, 'ssh-dsa', $password, $options);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DPuTTY.php72 $private = $components['private'];
78 if (Strings::shift($private, 4) != "\0\0\0\x20") {
81 $components['dA'] = $components['curve']->extractSecret($private);
83 list($components['dA']) = Strings::unpackSSH2('i', $private);
114 $private = $privateKey->toBytes();
116 $private = "\0$private";
120 $private = $curve instanceof TwistedEdwardsCurve ?
122 Strings::packSSH2('s', $private);
124 return self::wrapPrivateKey($public, $private, $name, $password, $options);
H A Dlibsodium.php59 $private = substr($key, 0, 32);
67 $private = substr($key, 0, 32);
75 if (isset($private)) {
76 $components['dA'] = $curve->extractSecret($private);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DPuTTY.php77 $result = Strings::unpackSSH2('iiii', $private);
113 $private = Strings::packSSH2('iiii', $d, $primes[1], $primes[2], $coefficients[2]);
115 return self::wrapPrivateKey($public, $private, 'ssh-rsa', $password, $options);
/plugin/authgooglesheets/vendor/psr/log/
H A DREADME.md29 private $logger;
/plugin/authmantis/
H A DLICENSE.md100 computer or modifying a private copy. Propagation includes copying,
/plugin/autogroup/
H A DLICENSE95 computer or modifying a private copy. Propagation includes copying,
/plugin/backlinks2/_test/data/pages/
H A Dbob_ross_says.txt5 …Now we'll take the almighty fan brush. Each highlight must have it's own private shadow. The only …
/plugin/backup/lang/de/
H A Dintro.txt10 …* **Wenn Sie sicherheitsrelevante Daten** (z.B. private Seiten oder Konfigurationsdateien in denen…
/plugin/backup/lang/en/
H A Dintro.txt10 …* **If you are backing up anything confidential** (e.g., private pages, or configuration files tha…
/plugin/barcode/
H A DCOPYING95 computer or modifying a private copy. Propagation includes copying,

12345678910