/PHP-7.3/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.3/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.3/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.3/main/ |
H A D | snprintf.c | 84 *sign = 0; in __cvt() 94 p = zend_dtoa(value, fmode + 2, ndigit, decpt, sign, &rve); in __cvt() 130 return(__cvt(value, ndigit, decpt, sign, 0, 1)); in php_ecvt() 136 return(__cvt(value, ndigit, decpt, sign, 1, 1)); in php_fcvt() 143 int i, decpt, sign; in php_gcvt() local 149 digits = zend_dtoa(value, mode, ndigit, &decpt, &sign, NULL); in php_gcvt() 161 if (sign) { in php_gcvt() 168 sign = 1; in php_gcvt() 171 sign = 0; in php_gcvt() 184 if (sign) { in php_gcvt() [all …]
|
/PHP-7.3/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.3/Zend/ |
H A D | zend_strtod.h | 27 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.3/ext/standard/ |
H A D | versioning.c | 27 #define sign(n) ((n)<0?-1:((n)>0?1:0)) macro 118 return sign(found1 - found2); in compare_special_version_forms() 163 compare = sign(l1 - l2); in php_version_compare()
|
H A D | crypt_blowfish.c | 556 BF_word safety, sign, diff, tmp[2]; in BF_set_key() local 596 sign = diff = 0; in BF_set_key() 612 sign |= tmp[1] & 0x80; in BF_set_key() 636 sign <<= 9; /* move the non-benign sign extension flag to bit 16 */ in BF_set_key() 637 sign &= ~diff & safety; /* action needed? */ in BF_set_key() 650 initial[0] ^= sign; in BF_set_key()
|
/PHP-7.3/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.3/ext/standard/tests/misc/ |
H A D | bug65550.phpt | 2 Bug #65550 (get_browser() incorrectly parses entries with "+" sign)
|
/PHP-7.3/ext/bcmath/libbcmath/src/ |
H A D | bcmath.h | 35 typedef enum {PLUS, MINUS} sign; typedef 41 sign n_sign;
|
/PHP-7.3/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.3/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.3/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.3/ext/filter/ |
H A D | logical_filters.c | 86 int sign = 0, digit = 0; in php_filter_parse_int() local 91 sign = 1; in php_filter_parse_int() 105 ctx_value = ((sign)?-1:1) * ((*(str++)) - '0'); in php_filter_parse_int() 119 if ( (!sign) && ctx_value <= (ZEND_LONG_MAX-digit)/10 ) { in php_filter_parse_int() 121 } else if ( sign && ctx_value >= (ZEND_LONG_MIN+digit)/10) { in php_filter_parse_int()
|
/PHP-7.3/ext/openssl/ |
H A D | README | 6 NEW: support for S/MIME encrypt/decrypt/sign/verify, as well as more 262 $fp = fopen("/src/openssl-0.9.6/demos/sign/cert.pem", "r"); 274 $fp = fopen("/src/openssl-0.9.6/demos/sign/key.pem", "r"); 294 $fp = fopen("/src/openssl-0.9.6/demos/sign/key.pem", "r"); 308 $fp = fopen("/src/openssl-0.9.6/demos/sign/cert.pem", "r");
|
/PHP-7.3/ext/pcre/pcre2lib/sljit/ |
H A D | sljitNativeX86_64.c | 793 static sljit_s32 emit_mov_int(struct sljit_compiler *compiler, sljit_s32 sign, in emit_mov_int() argument 807 if (sign || ((sljit_uw)srcw <= 0x7fffffff)) { in emit_mov_int() 828 if (sign) { in emit_mov_int()
|