/PHP-7.1/ext/openssl/tests/ |
H A D | openssl_verify_basic.phpt | 12 openssl_sign($data, $sign, $privkey); 13 var_dump(openssl_verify($data, $sign, $pubkey)); 14 var_dump(openssl_verify($data, $sign, $privkey)); 15 var_dump(openssl_verify($data, $sign, $wrong)); 17 var_dump(openssl_verify($wrong, $sign, $pubkey));
|
H A D | openssl_sign_basic.phpt | 11 var_dump(openssl_sign($data, $sign, $privkey)); // no output 12 var_dump(openssl_sign($data, $sign, $wrong)); 13 var_dump(openssl_sign(array(), $sign, $privkey));
|
H A D | bug66501.phpt | 20 $res = openssl_sign($data ='alpha', $sign, $key, 'SHA1');
|
H A D | bug36732.phpt | 2 Bug #36732 (add support for req_extensions in openss_csr_new and sign)
|
/PHP-7.1/ext/wddx/tests/ |
H A D | bug41527.phpt | 7 $data = array('01' => 'Zero', '+1' => 'Plus sign', ' 1' => 'Space'); 18 string(9) "Plus sign"
|
/PHP-7.1/scripts/dev/ |
H A D | gen_verify_stub | 35 gpg --armor --detach-sign $TARBALL 37 gpg -u $GPG_USER --armor --detach-sign $TARBALL
|
/PHP-7.1/main/ |
H A D | snprintf.c | 86 *sign = 0; in __cvt() 96 p = zend_dtoa(value, fmode + 2, ndigit, decpt, sign, &rve); in __cvt() 132 return(__cvt(value, ndigit, decpt, sign, 0, 1)); in php_ecvt() 138 return(__cvt(value, ndigit, decpt, sign, 1, 1)); in php_fcvt() 145 int i, decpt, sign; in php_gcvt() local 151 digits = zend_dtoa(value, mode, ndigit, &decpt, &sign, NULL); in php_gcvt() 163 if (sign) { in php_gcvt() 170 sign = 1; in php_gcvt() 173 sign = 0; in php_gcvt() 186 if (sign) { in php_gcvt() [all …]
|
/PHP-7.1/tests/lang/string/ |
H A D | unicode_escape_sign.phpt | 2 Invalid Unicode escape sequence: Positive sign
|
H A D | unicode_escape_sign2.phpt | 2 Invalid Unicode escape sequence: Negative sign
|
/PHP-7.1/Zend/ |
H A D | zend_strtod.h | 29 ZEND_API char * zend_dtoa(double _d, int mode, int ndigits, int *decpt, int *sign, char **rve);
|
H A D | zend_strtod.c | 1146 c->sign = i; 1939 if (sign) 1965 if (!sign) 1969 if (sign) 2059 if (sign) 2577 sign = 1; 2757 sign = 0; 2865 if (sign) 3797 *sign = 1; 3801 *sign = 0; [all …]
|
/PHP-7.1/ext/standard/ |
H A D | versioning.c | 29 #define sign(n) ((n)<0?-1:((n)>0?1:0)) macro 120 return sign(found1 - found2); in compare_special_version_forms() 165 compare = sign(l1 - l2); in php_version_compare()
|
H A D | crypt_blowfish.c | 557 BF_word safety, sign, diff, tmp[2]; in BF_set_key() local 597 sign = diff = 0; in BF_set_key() 613 sign |= tmp[1] & 0x80; in BF_set_key() 637 sign <<= 9; /* move the non-benign sign extension flag to bit 16 */ in BF_set_key() 638 sign &= ~diff & safety; /* action needed? */ in BF_set_key() 651 initial[0] ^= sign; in BF_set_key()
|
/PHP-7.1/ext/standard/tests/strings/ |
H A D | strip_tags_variation9.phpt | 19 "<html> \$ -> This represents the dollar sign</html><?php echo hello ?>", 42 string(50) "<html> $ -> This represents the dollar sign</html>"
|
H A D | strip_tags_variation10.phpt | 20 '<html> \$ -> This represents the dollar sign</html><?php echo hello ?>', 44 string(51) "<html> \$ -> This represents the dollar sign</html>"
|
H A D | sprintf_f_2.phpt | 54 var_dump(sprintf("%%+d = '%+d'", $n)); // sign specifier on a positive integer 55 var_dump(sprintf("%%+d = '%+d'", $u)); // sign specifier on a negative integer
|
/PHP-7.1/ext/standard/tests/misc/ |
H A D | bug65550.phpt | 2 Bug #65550 (get_browser() incorrectly parses entries with "+" sign)
|
/PHP-7.1/ext/bcmath/libbcmath/src/ |
H A D | bcmath.h | 35 typedef enum {PLUS, MINUS} sign; typedef 41 sign n_sign;
|
/PHP-7.1/ext/standard/tests/array/ |
H A D | array_unshift_variation7.phpt | 23 "\$ -> This represents the dollar sign. hello dollar!!!", 63 string(53) "$ -> This represents the dollar sign. hello dollar!!!" 76 string(53) "$ -> This represents the dollar sign. hello dollar!!!"
|
H A D | array_unshift_variation8.phpt | 23 '\$ -> This represents the dollar sign. hello dollar!!!', 63 string(54) "\$ -> This represents the dollar sign. hello dollar!!!" 76 string(54) "\$ -> This represents the dollar sign. hello dollar!!!"
|
/PHP-7.1/ext/interbase/tests/ |
H A D | interbase.inc | 98 function rand_number($len , $prec = -1, $sign = 1) 114 if ($sign && (rand() % 3 == 0)) {
|
/PHP-7.1/ext/standard/tests/general_functions/ |
H A D | bug48660.phpt | 2 Bug #48660 (parse_ini_*(): dollar sign as last character of value fails)
|
/PHP-7.1/ext/filter/ |
H A D | logical_filters.c | 88 int sign = 0, digit = 0; in php_filter_parse_int() local 93 sign = 1; in php_filter_parse_int() 107 ctx_value = ((sign)?-1:1) * ((*(str++)) - '0'); in php_filter_parse_int() 121 if ( (!sign) && ctx_value <= (ZEND_LONG_MAX-digit)/10 ) { in php_filter_parse_int() 123 } else if ( sign && ctx_value >= (ZEND_LONG_MIN+digit)/10) { in php_filter_parse_int()
|
/PHP-7.1/ext/openssl/ |
H A D | README | 8 NEW: support for S/MIME encrypt/decrypt/sign/verify, as well as more 264 $fp = fopen("/src/openssl-0.9.6/demos/sign/cert.pem", "r"); 276 $fp = fopen("/src/openssl-0.9.6/demos/sign/key.pem", "r"); 296 $fp = fopen("/src/openssl-0.9.6/demos/sign/key.pem", "r"); 310 $fp = fopen("/src/openssl-0.9.6/demos/sign/cert.pem", "r");
|
/PHP-7.1/ext/pcre/pcrelib/sljit/ |
H A D | sljitNativeX86_64.c | 692 static sljit_si emit_mov_int(struct sljit_compiler *compiler, sljit_si sign, in emit_mov_int() argument 706 if (sign || ((sljit_uw)srcw <= 0x7fffffff)) { in emit_mov_int() 727 if (sign) { in emit_mov_int()
|