Searched refs:bn (Results 1 – 4 of 4) sorted by relevance
/php-src/ext/openssl/ |
H A D | xp_ssl.c | 1225 BIGNUM *bn = NULL; in php_openssl_tmp_rsa_cb() local 1228 if (!rsa_tmp && ((bn = BN_new()) == NULL)) { in php_openssl_tmp_rsa_cb() 1231 if (!rsa_tmp && bn) { in php_openssl_tmp_rsa_cb() 1232 if (!BN_set_word(bn, RSA_F4) || ((rsa_tmp = RSA_new()) == NULL) || in php_openssl_tmp_rsa_cb() 1233 !RSA_generate_key_ex(rsa_tmp, keylength, bn, NULL)) { in php_openssl_tmp_rsa_cb() 1239 BN_free(bn); in php_openssl_tmp_rsa_cb()
|
H A D | openssl.c | 3916 if (bn != NULL) { in php_openssl_add_bn_to_array() 3917 int len = BN_num_bytes(bn); in php_openssl_add_bn_to_array() 3919 BN_bn2bin(bn, (unsigned char *)ZSTR_VAL(str)); in php_openssl_add_bn_to_array() 3928 zval *bn; \ 3930 Z_TYPE_P(bn) == IS_STRING) { \ 3932 (unsigned char*)Z_STRVAL_P(bn), \ 3933 (int)Z_STRLEN_P(bn), NULL); \ 5085 BIGNUM *bn = NULL; in php_openssl_copy_bn_param() local 5086 if (EVP_PKEY_get_bn_param(pkey, param, &bn) > 0) { in php_openssl_copy_bn_param() 5087 php_openssl_add_bn_to_array(ary, bn, name); in php_openssl_copy_bn_param() [all …]
|
/php-src/ext/hash/tests/ |
H A D | fnv1a64.phpt | 228 array( '9nJci0@/i_LoeJxL2S0-WTNH gbl&rC?bn$L~E[h%)YkS', 'b8c4873ffdaf0fac' ), 251 array( '>zgV)ZW?tknEq6dbb>[P+]Xo<c:}x(z7$bn-=FL33;Y&R>h6]', '2d02887219c5f7ba' ),
|
/php-src/ext/opcache/jit/ir/dynasm/ |
H A D | minilua.c | 7700 union{lua_Number n;U64 b;}bn; 7701 bn.n=lua_tonumber(L,idx)+6755399441055744.0; 7702 if(bn.n==0.0&&!lua_isnumber(L,idx))luaL_typerror(L,idx,"number"); 7703 return(UB)bn.b;
|
Completed in 44 milliseconds