Home
last modified time | relevance | path

Searched full:secure (Results 1 – 25 of 311) sorted by relevance

12345678910>>...13

/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DCookie.php55 if (isset($cookieArray['secure'])) {
56 $cookie->setSecure($cookieArray['secure']);
143 * Whether this cookie requires a secure connection (https). Defaults to false if omitted.
145 * @param bool $secure
147 public function setSecure($secure) argument
149 $this->offsetSet('secure', $secure);
157 return $this->offsetGet('secure');
202 if (!isset($cookie['secure'])) {
203 // Passing a boolean value for the "secure" flag is mandatory when using geckodriver
204 $cookie['secure'] = false;
/plugin/ckgedit/scripts/
Dsetsamesite.php6 …$name, $value, $expire=0, $path ='/', $domain="", $httponly="HttpOnly", $secure=false, $samesite="… argument
9 … setcookie($name, $value, $expire, "$path; samesite=$samesite", $domain, $secure, $httponly);
17 'secure' => $secure,
/plugin/statistics/vendor/matomo/device-detector/regexes/client/hints/
Dbrowsers.yml25 'com.internet.browser.secure': 'Internet Browser Secure'
77 'com.ucold.browser.secure.browse': 'UC Browser Mini'
112 'quick.browser.secure': 'Quick Browser'
137 'privatebrowser.securebrowser.com.klar': 'Secure Private Browser'
166 'com.qihoo.browser': '360 Secure Browser'
167 'com.qihoo.contents': '360 Secure Browser'
168 'com.qihoo.haosou': '360 Secure Browser'
169 'com.qihoo.padbrowser': '360 Secure Browser'
170 'com.qihoo.sonybrowser': '360 Secure Browser'
246 'com.airfind.browser': 'Airfind Secure Browser'
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
Ddate.rst96 .. _`strtotime`: https://secure.php.net/strtotime
97 .. _`DateTime`: https://secure.php.net/DateTime
98 .. _`DateInterval`: https://secure.php.net/DateInterval
99 .. _`date`: https://secure.php.net/date
100 .. _`DateInterval::format`: https://secure.php.net/DateInterval.format
Dslice.rst68 .. _`Traversable`: https://secure.php.net/manual/en/class.traversable.php
69 .. _`array_slice`: https://secure.php.net/array_slice
70 .. _`mb_substr` : https://secure.php.net/mb-substr
71 .. _`substr`: https://secure.php.net/substr
Durl_encode.rst32 .. _`urlencode`: https://secure.php.net/urlencode
33 .. _`rawurlencode`: https://secure.php.net/rawurlencode
34 .. _`http_build_query`: https://secure.php.net/http_build_query
Dtrim.rst43 .. _`trim`: https://secure.php.net/trim
44 .. _`ltrim`: https://secure.php.net/ltrim
45 .. _`rtrim`: https://secure.php.net/rtrim
Djson_encode.rst22 .. _`json_encode`: https://secure.php.net/json_encode
23 .. _`json_encode options`: https://secure.php.net/manual/en/json.constants.php
Ddate_modify.rst22 .. _`strtotime`: https://secure.php.net/strtotime
23 .. _`DateTime`: https://secure.php.net/DateTime
Dconvert_encoding.rst27 .. _`iconv`: https://secure.php.net/iconv
28 .. _`mbstring`: https://secure.php.net/mbstring
/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/Cookie/
DSetCookie.php20 'Secure' => false,
109 if (isset($data['Secure'])) {
110 $this->setSecure($data['Secure']);
301 * Get whether or not this is a secure cookie.
307 return $this->data['Secure'];
311 * Set whether or not the cookie is secure.
313 * @param bool $secure Set to true or false if secure
315 public function setSecure($secure): void argument
317 if (!is_bool($secure)) {
321 $this->data['Secure'] = (bool) $secure;
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/
DURI.MungeSecretKey.txt7 This directive enables secure checksum generation along with %URI.Munge.
8 It should be set to a secure key that is not shared with anyone else.
22 secure hashes en-mass by abusing your website's Preview feature or the
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Cookie/
DSetCookie.php17 'Secure' => false,
228 * Get whether or not this is a secure cookie
234 return $this->data['Secure'];
238 * Set whether or not the cookie is secure
240 * @param bool $secure Set to true or false if secure
242 public function setSecure($secure) argument
244 $this->data['Secure'] = $secure;
/plugin/favoris/
Dfavoris.js11 [secure] - Boolean value indicating if the cookie transmission requires a secure transmission
16 function setCookie(name, value, expires, path, domain, secure) { argument
21 ((secure) ? "; secure" : "");
/plugin/smtp/subtree/txtthinking/Mailer/src/Mailer/
H A DSMTP.php45 * smtp secure ssl tls
47 protected $secure; variable in Tx\\Mailer\\SMTP
101 * @param string $secure ssl tls
104 public function setServer($host, $port, $secure=null) argument
108 $this->secure = $secure;
152 if ($this->secure === 'tls'){
173 $host = ($this->secure == 'ssl') ? 'ssl://' . $this->host : $this->host;
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
Dimages.md2 ![Build Status](https://secure.travis-ci.org/cebe/markdown.png "test1")
9 [![Build Status](https://secure.travis-ci.org/cebe/markdown.png "test2")](http://travis-ci.org/cebe…
10 [![Build Status](https://secure.travis-ci.org/cebe/markdown.png "test3")](http://travis-ci.org/cebe…
Dimages.html2 <img src="https://secure.travis-ci.org/cebe/markdown.png" alt="Build Status" title="test1" /></p>
7 <a href="http://travis-ci.org/cebe/markdown"><img src="https://secure.travis-ci.org/cebe/markdown.p…
8 <a href="http://travis-ci.org/cebe/markdown" title="test4"><img src="https://secure.travis-ci.org/c…
/plugin/freechat/phpfreechat/data/public/js/
Dcookie.js8 function setCookie(name, value, expires, path, domain, secure) { argument
9 …) ? '; path=' + path : '') + ((domain) ? '; domain=' + domain : '') + ((secure) ? '; secure' : '');
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/
Dhttps.php4 * Validates https (Secure HTTP) according to http scheme.
15 public $secure = true; variable in HTMLPurifier_URIScheme_https
/plugin/socialshareprivacy2/JC/
DREADME.md47 *Note: when deleting a cookie, you must pass the exact same path, domain and secure options that we…
93 ### secure subsection
95 secure: true
97 If true, the cookie transmission requires a secure protocol (https). Default: `false`.
/plugin/combo/vendor/hidehalo/nanoid-php/src/
H A DCoreInterface.php10 * Secure random string generator with custom alphabet.
12 * will not be secure.
/plugin/authfacebook/lib/PseudoRandomString/
DPseudoRandomStringGeneratorFactory.php74 …* @throws FacebookSDKException If unable to detect a cryptographically secure pseudo-random string…
86 // secure pseudo-random strings (in rare cases), we check for mcrypt_create_iv() next.
99 …throw new FacebookSDKException('Unable to detect a cryptographically secure pseudo-random string g…
/plugin/securelogin/lang/en/
Dlang.php17 $lang['use_securelogin'] = 'Secure login';
19 $lang['securelogin_conf'] = 'Secure login configuration';
/plugin/diagramsnet/lib/js/diagramly/sidebar/
DSidebar-Cisco19.js72 …w, h, '', 'Secure Catalyst Switch (color)', null, null, this.getTagsForStencil(gn, 'secure catalys…
74 …w, h, '', 'Secure Catalyst Switch (subdued)', null, null, this.getTagsForStencil(gn, 'secure catal…
76 …w, h, '', 'Secure Switch (color)', null, null, this.getTagsForStencil(gn, 'secure switch color', d…
78 …w, h, '', 'Secure Switch (subdued)', null, null, this.getTagsForStencil(gn, 'secure switch subdued…
84 …w, h, '', 'Secure Catalyst Switch (color)', null, null, this.getTagsForStencil(gn, 'secure catalys…
86 …w, h, '', 'Secure Catalyst Switch (color)', null, null, this.getTagsForStencil(gn, 'secure catalys…
88 …w, h, '', 'Secure Catalyst Switch (subdued)', null, null, this.getTagsForStencil(gn, 'secure catal…
118 …w, h, '', 'Secure Router (color)', null, null, this.getTagsForStencil(gn, 'secure router color', d…
120 …w, h, '', 'Secure Router (subdued)', null, null, this.getTagsForStencil(gn, 'secure router subdued…
230 …w * 0.55, h, '', 'Secure Server', null, null, this.getTagsForStencil(gn, 'secure server', dt).join…
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/
DFloodlightActivity.php100 public $secure; variable in Google\\Service\\Dfareporting\\FloodlightActivity
427 public function setSecure($secure) argument
429 $this->secure = $secure;
436 return $this->secure;

12345678910>>...13