| /plugin/findologicxmlexport/vendor/sebastian/diff/ |
| D | README.md | 58 [from:SebastianBergmann\Diff\Diff:private] => a/tests/MoneyTest.php 59 [to:SebastianBergmann\Diff\Diff:private] => b/tests/MoneyTest.php 60 [chunks:SebastianBergmann\Diff\Diff:private] => Array 64 [start:SebastianBergmann\Diff\Chunk:private] => 87 65 [startRange:SebastianBergmann\Diff\Chunk:private] => 7 66 [end:SebastianBergmann\Diff\Chunk:private] => 87 67 [endRange:SebastianBergmann\Diff\Chunk:private] => 7 68 [lines:SebastianBergmann\Diff\Chunk:private] => Array 72 [type:SebastianBergmann\Diff\Line:private] => 3 73 … [content:SebastianBergmann\Diff\Line:private] => * @covers SebastianBergmann\Money\Money::add [all …]
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/ |
| D | PuTTY.php | 72 $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);
|
| D | libsodium.php | 59 $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/ |
| D | DH.php | 266 * @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()) {
|
| D | DSA.php | 210 $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/Common/Formats/Keys/ |
| D | PuTTY.php | 264 …$private = Base64::decode(implode('', array_map('trim', array_slice($key, $offset, $privateLength)… 270 $private = $crypto->decrypt($private); 273 $source .= Strings::packSSH2('s', $private); 282 $components['private'] = $private; 292 * @param string $private 298 … protected static function wrapPrivateKey($public, $private, $type, $password, array $options = []) argument 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); [all …]
|
| D | PKCS8.php | 451 $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) { 463 …eption('Only ' . static::OID_NAME . ' keys are supported; this is a ' . $private['privateKeyAlgori… 466 if (isset($private['publicKey'])) { 467 if ($private['publicKey'][0] != "\0") { [all …]
|
| /plugin/jplayer/vendor/happyworm/jplayer/src/actionscript/happyworm/jPlayer/ |
| D | ConnectManager.as | 39 private var protocols_arr:Array = new Array("rtmp","rtmpt","rtmpe","rtmpte","rtmps"); 40 private var ports_arr:Array = new Array("",":1935",":80",":443"); 41 private const protCount:Number = 5; 42 private const portCount:Number = 4; 44 private var _ncRef:Object; 46 private var _aNC:Array; 48 private var k_TIMEOUT:Number = 30000; 49 private var k_startConns:Number; 50 private var m_connList:Array = []; 51 private var m_serverName:String; [all …]
|
| D | JplayerMp3.as | 26 private var mySound:Sound = new Sound(); 27 private var myChannel:SoundChannel = new SoundChannel(); 28 private var myContext:SoundLoaderContext = new SoundLoaderContext(3000, false); 29 private var myTransform:SoundTransform = new SoundTransform(); 30 private var myRequest:URLRequest = new URLRequest(); 32 private var timeUpdateTimer:Timer = new Timer(250, 0); // Matched to HTML event freq 33 private var progressTimer:Timer = new Timer(250, 0); // Matched to HTML event freq 34 …private var seekingTimer:Timer = new Timer(100, 0); // Internal: How often seeking is checked to s… 35 …private var playingTimer:Timer = new Timer(100, 0); // Internal: How often waiting/playing is chec… 36 …private var waitingTimer:Timer = new Timer(3000, 0); // Internal: Check from loadstart to loadOpen… [all …]
|
| D | JplayerMp4.as | 31 private var myConnection:NetConnection; 32 private var myStream:NetStream; 34 private var myTransform:SoundTransform = new SoundTransform(); 38 private var timeUpdateTimer:Timer = new Timer(250, 0); // Matched to HTML event freq 39 private var progressTimer:Timer = new Timer(250, 0); // Matched to HTML event freq 40 …private var seekingTimer:Timer = new Timer(100, 0); // Internal: How often seeking is checked to s… 55 private function progressUpdates(active:Boolean):void { 62 private function progressHandler(e:TimerEvent):void { 72 private function progressEvent():void { 77 private function timeUpdates(active:Boolean):void { [all …]
|
| /plugin/jplayer/vendor/happyworm/jplayer/src/actionscript/ |
| D | Jplayer.as | 54 private var jQuery:String; 55 private var sentNumberFractionDigits:uint = 2; 59 private var myInitTimer:Timer = new Timer(100, 0); 61 private var myMp3Player:JplayerMp3; 62 private var myMp4Player:JplayerMp4; 64 private var myRtmpPlayer:JplayerRtmp; 66 private var isRtmp:Boolean = false; 67 private var isMp4:Boolean = false; 69 private var isMp3:Boolean = false; 70 private var isVideo:Boolean = false; [all …]
|
| /plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/ |
| D | exclusion_strategies.rst | 33 private $foo; 34 private $bar; 39 private $name; 62 private $name; 68 private $name2; 101 private $id; 104 private $title; 107 private $nbComments; 110 private $comments; 112 private $createdAt; [all …]
|
| /plugin/authgooglesheets/vendor/paragonie/random_compat/other/ |
| D | build_phar.php | 37 $private = openssl_get_privatekey($pkeyFile); variable 38 if ($private !== false) { 40 openssl_pkey_export($private, $pkey); 47 $details = openssl_pkey_get_details($private);
|
| /plugin/combo/vendor/paragonie/random_compat/other/ |
| H A D | build_phar.php | 37 $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/google/apiclient-services/src/Calendar/ |
| D | EventExtendedProperties.php | 25 public $private; variable in Google\\Service\\Calendar\\EventExtendedProperties 34 public function setPrivate($private) argument 36 $this->private = $private;
|
| /plugin/turnstile/ |
| D | action.php | 63 $private = $this->getConf('secretkey'); 64 if (empty($private)) return null; 74 'secret' => $private, 101 $private = $this->getConf('secretkey'); 102 if (empty($public) || empty($private)) return;
|
| /plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/ |
| D | annotations.rst | 104 private $name; 129 private $id; 132 private $name; 169 private $id; 170 private $name; 180 private $id; 181 private $name; 191 private $id; 192 private $name; 228 private $id; [all …]
|
| /plugin/fedauth/Auth/OpenID/ |
| D | DiffieHellman.php | 47 var $private; variable in Auth_OpenID_DiffieHellman 51 $private = null, $lib = null) argument 71 if ($private === null) { 75 $this->private = $private;
|
| /plugin/openid/Auth/OpenID/ |
| D | DiffieHellman.php | 47 public $private; variable in Auth_OpenID_DiffieHellman 52 $private = null, $lib = null) argument 72 if ($private === null) { 76 $this->private = $private;
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/ |
| D | mocked_class.tpl.dist | 3 private $__phpunit_invocationMocker; 4 private $__phpunit_originalObject; 5 private $__phpunit_configurable = {configurable};
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/ |
| D | 232.phpt | 17 hello as private hi; 58 private $__phpunit_invocationMocker; 59 private $__phpunit_originalObject; 60 private $__phpunit_configurable = ['speak'];
|
| D | class_call_parent_clone.phpt | 28 private $__phpunit_invocationMocker; 29 private $__phpunit_originalObject; 30 private $__phpunit_configurable = [];
|
| D | class_dont_call_parent_clone.phpt | 28 private $__phpunit_invocationMocker; 29 private $__phpunit_originalObject; 30 private $__phpunit_configurable = [];
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/ |
| D | PuTTY.php | 70 list($x) = Strings::unpackSSH2('i', $private); 95 $private = Strings::packSSH2('i', $x); 97 return self::wrapPrivateKey($public, $private, 'ssh-dsa', $password, $options);
|
| /plugin/bez/mdl/ |
| H A D | ThreadFactory.php | 214 $private = false; 216 $private = true; 218 $thread->set_private_flag($private); 282 $private = false; 284 $private = true; 286 $thread->set_private_flag($private);
|