Home
last modified time | relevance | path

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

12345678910

/plugin/findologicxmlexport/vendor/sebastian/diff/
H A DREADME.md58 [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
78 [type:SebastianBergmann\Diff\Line:private] => 3
[all …]
/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/
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/Common/Formats/Keys/
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 …]
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 …]
/plugin/jplayer/vendor/happyworm/jplayer/src/actionscript/happyworm/jPlayer/
H A DConnectManager.as41 private const protCount:Number = 5;
42 private const portCount:Number = 4;
44 private var _ncRef:Object;
46 private var _aNC:Array;
49 private var k_startConns:Number;
50 private var m_connList:Array = [];
51 private var m_serverName:String;
52 private var m_appName:String;
53 private var m_streamName:String;
274 * @private
[all …]
H A DJplayerMp3.as26 private var mySound:Sound = new Sound();
84 private function loadOpen(e:Event):void {
98 private function loadComplete(e:Event):void {
125 private function progressEvent():void {
142 private function timeUpdateEvent():void {
146 private function seeking(active:Boolean):void {
170 private function seekingEvent():void {
175 private function seekedEvent():void {
194 private function waitingEvent():void {
198 private function playingEvent():void {
[all …]
H A DJplayerMp4.as31 private var myConnection:NetConnection;
32 private var myStream:NetStream;
72 private function progressEvent():void {
77 private function timeUpdates(active:Boolean):void {
87 private function timeUpdateEvent():void {
91 private function seeking(active:Boolean):void {
119 private function seekingEvent():void {
124 private function seekedEvent():void {
161 private function endedEvent():void {
173 private function connectStream():void {
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/src/actionscript/
H A DJplayer.as54 private var jQuery:String;
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;
76 private var txLog:TextField;
445 private function getType():Object {
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst33 private $foo;
34 private $bar;
39 private $name;
62 private $name;
68 private $name2;
101 private $id;
104 private $title;
138 private $name;
246 private $posts;
285 private $name;
[all …]
/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/combo/vendor/paragonie/random_compat/other/
H A Dbuild_phar.php25 * If we pass an (optional) path to a private key as a second argument, we will
32 echo 'Could not read the private key file:', $argv[1], "\n";
37 $private = openssl_get_privatekey($pkeyFile); variable
38 if ($private !== false) {
40 openssl_pkey_export($private, $pkey);
47 $details = openssl_pkey_get_details($private);
54 echo 'An error occurred reading the private key from OpenSSL.', "\n";
/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/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dannotations.rst104 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/
H A DDiffieHellman.php47 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/
H A DDiffieHellman.php47 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/
H A Dmocked_class.tpl.dist3 private $__phpunit_invocationMocker;
4 private $__phpunit_originalObject;
5 private $__phpunit_configurable = {configurable};
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A D232.phpt17 hello as private hi;
58 private $__phpunit_invocationMocker;
59 private $__phpunit_originalObject;
60 private $__phpunit_configurable = ['speak'];
H A Dnonexistent_class.phpt26 private $__phpunit_invocationMocker;
27 private $__phpunit_originalObject;
28 private $__phpunit_configurable = [];
H A Dclass_call_parent_clone.phpt28 private $__phpunit_invocationMocker;
29 private $__phpunit_originalObject;
30 private $__phpunit_configurable = [];
H A Dclass_dont_call_parent_constructor.phpt28 private $__phpunit_invocationMocker;
29 private $__phpunit_originalObject;
30 private $__phpunit_configurable = [];
H A Dnonexistent_class_with_namespace_starting_with_separator.phpt32 private $__phpunit_invocationMocker;
33 private $__phpunit_originalObject;
34 private $__phpunit_configurable = [];
/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);

12345678910