| /plugin/gtime/gtlib/asn1/x509/ |
| D | X509Certificate.php | 111 * @param array $sign byte array containing the signature bytes 115 public function verifySignature($data, $sign, $algorithm = 'sha256') { argument 121 if (empty($sign)) { 133 return X509Certificate::verifyPublicKeySignature($this->pkey, $data, $sign, $algorithm); 265 * @param array $sign array of signature bytes 269 public static function verifyPublicKeySignature($pkey, $data, $sign, $algorithm = 'sha256') { argument 275 if (empty($sign)) { 284 $sign = GTUtil::fromByteArray($sign); 286 return openssl_verify($data, $sign, $pkey, $algorithm) === 1;
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ |
| D | Number.php | 42 $sign = ''; 48 $sign = '-'; 55 return $number ? $sign . $number : '0'; 82 return $left ? $sign . $left : '0'; 86 return $sign . $left . '.' . $right;
|
| /plugin/bootnote/ |
| D | style.css | 1 div.sign-container { 6 span.sign { 69 .s-info-sign { 73 div.s-info-sign>div { 79 .s-question-sign { 83 div.s-question-sign>div { 160 .n-info-sign { 172 .n-question-sign {
|
| D | README.md | 19 * "nothing" : display a simple note with info sign : `<bootnote>...Note...</bootnote>` 20 * Web : display a note with an globe sign : `<bootnote web>...Note...</bootnote>` 21 * Question : display a note with question sign : `<bootnote question>...Note...</bootnote>` 22 * Learn : display note with an education sign : ``<bootnote learn>...Note...</bootnote>`` 23 * Warning : display a note with a warning sign : ``<bootnote warning>...Note...</bootnote>`` 24 * Critical : display a note with a fire sign ``<bootnote critical>...Note...</bootnote>``
|
| /plugin/gtime/gtlib/util/ |
| D | GTBigInteger.php | 60 $sign = ''; 70 $sign = '-'; 81 if ($sign == '-') { 85 $value = $sign . $value; 322 $sign = ''; 325 $sign = '-'; 341 if ($sign == '-') {
|
| /plugin/odt/ODT/css/ |
| D | cssdocument.php | 164 $sign = $input [$pos]; 168 if ($sign == '"' || $sign == "'") { 169 $quote = $sign; 173 if ($sign == $quote) { 176 $value .= $sign; 180 if ($in_quotes == false || $sign != $quote) {
|
| D | cssimportnew.php | 176 * @param character $sign 178 protected function isSpecialSign ($sign) { argument 179 switch ($sign) { 212 $sign = $simple_selector_string [$pos]; 213 if ($this->isSpecialSign ($sign)) { 215 $first_sign = $sign; 247 $first_sign = $sign; 258 $content .= $sign; 433 $sign = $this->selector_string [$pos]; 434 $result = strpos ($separators, $sign); [all …]
|
| /plugin/asciidocjs/node_modules/core-js/library/modules/ |
| D | _math-sign.js | 2 module.exports = Math.sign || function sign(x) {
|
| D | es6.math.cbrt.js | 3 var sign = require('./_math-sign'); variable 7 return sign(x = +x) * Math.pow(Math.abs(x), 1 / 3);
|
| D | _math-fround.js | 2 var sign = require('./_math-sign'); variable 15 var $sign = sign(x);
|
| /plugin/asciidocjs/node_modules/core-js/modules/ |
| D | _math-sign.js | 2 module.exports = Math.sign || function sign(x) {
|
| D | es6.math.cbrt.js | 3 var sign = require('./_math-sign'); variable 7 return sign(x = +x) * Math.pow(Math.abs(x), 1 / 3);
|
| D | _math-fround.js | 2 var sign = require('./_math-sign'); variable 15 var $sign = sign(x);
|
| /plugin/virtualkeyboard/vk/extensions/ |
| D | stringextensions.js | 182 ,sign = false 252 sign = (x[2] == ' ' || x[2] == '+'); 258 sign = (x[2] == ' ' || x[2] == '+'); property 265 sign = (x[2] == ' ' || x[2] == '+'); property 288 if (sign) ins = x[2]+ins;
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | toFinite.js | 36 var sign = (value < 0 ? -1 : 1); 37 return sign * MAX_INTEGER;
|
| /plugin/codemirror/dist/modes/ |
| D | jinja2.min.js | 1 …sign){g.sign=false;if(f.match(d)){return"atom"}if(f.match(e)){return"number"}}if(g.instring){if(h=…
|
| D | twig.min.js | 1 …sign){g.sign=false;if(f.match(d)){return"atom"}if(f.match(e)){return"number"}}if(g.instring){if(h=…
|
| D | cobol.min.js | 1 …sign:/[+-]/,exponent:/e/i,keyword_char:/[^\s\(\[\;\)\]]/,symbol:/[\w*+\-]/};function o(a,b){if(a==… property
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/ |
| D | Ed448.php | 62 * @param boolean $sign 65 public function recoverX(BigInteger $y, $sign) argument 74 if ($sign) { 87 if ($x->isOdd() != $sign) {
|
| D | Ed25519.php | 106 * @param boolean $sign 109 public function recoverX(BigInteger $y, $sign) argument 118 if ($sign) { 146 if ($x->isOdd() != $sign) {
|
| /plugin/odt/ODT/ |
| D | ODTImport.php | 399 $sign = '•'; 402 $sign = '∘'; 405 $sign = '▪'; 408 $sign = ' '; 411 $sign = '●'; 414 $sign = '✔'; 417 $sign = '✗'; 420 $sign = '➔'; 423 $sign = '➢'; 426 $sign = trim($properties ['list-style-type'],'"'); [all …]
|
| D | XMLUtil.php | 14 public static function isValidXMLName ($sign) { argument 15 if (ctype_alnum($sign) || $sign == ':' || $sign == '-' || $sign == '_') {
|
| /plugin/scrape/vendor/symfony/css-selector/XPath/Extension/ |
| D | FunctionExtension.php | 73 $sign = '<='; 75 $sign = '>='; 89 $conditions = [sprintf('%s %s 0', $expr, $sign)];
|
| /plugin/botbouncer/ |
| D | README.md | 32 http://akismet.com is an anti-comment-spam service from the makers of Wordpress. When you sign up, … 37 When you sign up, you get a private and a public key string, which you can enter in the configurati… 41 …s a free service that uses the DNS system to manage blocking. You need to sign up to get an API ke…
|
| /plugin/asciidocjs/node_modules/supports-color/ |
| D | index.js | 84 …RCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE'].some(sign => sign in env) || env.…
|