Home
last modified time | relevance | path

Searched refs:sign (Results 1 – 25 of 95) sorted by relevance

1234

/PHP-8.1/ext/openssl/tests/
H A Dopenssl_verify_basic.phpt12 openssl_sign($data, $sign, $privkey, OPENSSL_ALGO_SHA256);
13 var_dump(openssl_verify($data, $sign, $pubkey, OPENSSL_ALGO_SHA256));
14 var_dump(openssl_verify($data, $sign, $privkey, OPENSSL_ALGO_SHA256));
15 var_dump(openssl_verify($data, $sign, $wrong, OPENSSL_ALGO_SHA256));
17 var_dump(openssl_verify($wrong, $sign, $pubkey, OPENSSL_ALGO_SHA256));
H A Dopenssl_sign_basic.phpt11 var_dump(openssl_sign($data, $sign, $privkey, OPENSSL_ALGO_SHA256)); // no output
12 var_dump(openssl_sign($data, $sign, $wrong));
H A Dbug66501.phpt21 $res = openssl_sign($data ='alpha', $sign, $key, 'SHA256');
H A Dbug36732.phpt2 Bug #36732 (add support for req_extensions in openss_csr_new and sign)
/PHP-8.1/scripts/dev/
H A Dgen_verify_stub35 gpg --armor --detach-sign $TARBALL
37 gpg -u $GPG_USER --armor --detach-sign $TARBALL
/PHP-8.1/ext/standard/tests/strings/
H A Dsprintf_variation5.phpt22 var_dump(sprintf("%%+d = '%+d'", $n)); // sign specifier on a positive integer
23 var_dump(sprintf("%%+d = '%+d'", $u)); // sign specifier on a negative integer
H A Dstrip_tags_variation10.phpt13 '<html> \$ -> This represents the dollar sign</html><?php echo hello ?>',
37 string(51) "<html> \$ -> This represents the dollar sign</html>"
H A Dstrip_tags_variation9.phpt12 "<html> \$ -> This represents the dollar sign</html><?php echo hello ?>",
36 string(50) "<html> $ -> This represents the dollar sign</html>"
H A Dsprintf_f_2.phpt54 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-8.1/tests/lang/string/
H A Dunicode_escape_sign.phpt2 Invalid Unicode escape sequence: Positive sign
H A Dunicode_escape_sign2.phpt2 Invalid Unicode escape sequence: Negative sign
/PHP-8.1/ext/opcache/jit/libudis86/
H A Dsyn.h47 void ud_syn_print_mem_disp(struct ud* u, const struct ud_operand *, int sign);
H A Dsyn.c197 ud_syn_print_mem_disp(struct ud* u, const struct ud_operand *op, int sign) in ud_syn_print_mem_disp() argument
251 ud_asmprintf(u, "%s0x%" FMT64 "x", sign? "+" : "", v); in ud_syn_print_mem_disp()
/PHP-8.1/Zend/
H A Dzend_strtod.c1139 c->sign = i;
1962 if (sign)
2570 sign = 1;
2751 sign = 0;
2859 if (sign)
3784 *sign = 1; in zend_dtoa()
3788 *sign = 0; in zend_dtoa()
3820 if (*sign) in zend_dtoa()
4514 bool sign; in zend_gcvt() local
4532 if (sign) { in zend_gcvt()
[all …]
H A Dzend_strtod.h27 ZEND_API char *zend_dtoa(double _d, int mode, int ndigits, int *decpt, bool *sign, char **rve);
/PHP-8.1/ext/standard/tests/misc/
H A Dbug65550.phpt2 Bug #65550 (get_browser() incorrectly parses entries with "+" sign)
/PHP-8.1/ext/bcmath/libbcmath/src/
H A Dbcmath.h35 typedef enum {PLUS, MINUS} sign; typedef
41 sign n_sign;
/PHP-8.1/ext/date/tests/
H A Dgh9880.phpt2 Bug GH-9880 (DateTime diff returns wrong sign on day count when using a timezone)
/PHP-8.1/ext/standard/
H A Dcrypt_blowfish.c538 BF_word safety, sign, diff, tmp[2]; in BF_set_key() local
578 sign = diff = 0; in BF_set_key()
594 sign |= tmp[1] & 0x80; in BF_set_key()
618 sign <<= 9; /* move the non-benign sign extension flag to bit 16 */ in BF_set_key()
619 sign &= ~diff & safety; /* action needed? */ in BF_set_key()
632 initial[0] ^= sign; in BF_set_key()
/PHP-8.1/main/
H A Dsnprintf.c60 static char * __cvt(double value, int ndigit, int *decpt, bool *sign, int fmode, int pad) /* {{{ */ in __cvt() argument
75 *sign = 0; in __cvt()
85 p = zend_dtoa(value, fmode + 2, ndigit, decpt, sign, &rve); in __cvt()
119 static inline char *php_ecvt(double value, int ndigit, int *decpt, bool *sign) /* {{{ */ in php_ecvt() argument
121 return(__cvt(value, ndigit, decpt, sign, 0, 1)); in php_ecvt()
125 static inline char *php_fcvt(double value, int ndigit, int *decpt, bool *sign) /* {{{ */ in php_fcvt() argument
127 return(__cvt(value, ndigit, decpt, sign, 1, 1)); in php_fcvt()
/PHP-8.1/ext/standard/tests/array/
H A Darray_unshift_variation7.phpt18 "\$ -> This represents the dollar sign. hello dollar!!!",
58 string(53) "$ -> This represents the dollar sign. hello dollar!!!"
71 string(53) "$ -> This represents the dollar sign. hello dollar!!!"
H A Darray_unshift_variation8.phpt18 '\$ -> This represents the dollar sign. hello dollar!!!',
58 string(54) "\$ -> This represents the dollar sign. hello dollar!!!"
71 string(54) "\$ -> This represents the dollar sign. hello dollar!!!"
/PHP-8.1/ext/standard/tests/general_functions/
H A Dbug48660.phpt2 Bug #48660 (parse_ini_*(): dollar sign as last character of value fails)
/PHP-8.1/ext/filter/
H A Dlogical_filters.c96 int sign = 0, digit = 0; in php_filter_parse_int() local
101 sign = 1; in php_filter_parse_int()
116 ctx_value = ((sign)?-1:1) * ((*(str++)) - '0'); in php_filter_parse_int()
130 if ( (!sign) && ctx_value <= (ZEND_LONG_MAX-digit)/10 ) { in php_filter_parse_int()
132 } else if ( sign && ctx_value >= (ZEND_LONG_MIN+digit)/10) { in php_filter_parse_int()
/PHP-8.1/ext/mbstring/tests/
H A Deucjp_2004_encoding.phpt52 * but legacy Japanese software often used it for a yen sign. */

Completed in 63 milliseconds

1234