Lines Matching refs:cryptedlen

4947 	int cryptedlen;  in PHP_FUNCTION()  local
4969 cryptedlen = EVP_PKEY_size(pkey); in PHP_FUNCTION()
4970 cryptedbuf = zend_string_alloc(cryptedlen, 0); in PHP_FUNCTION()
4979 (int)padding) == cryptedlen); in PHP_FUNCTION()
4987 ZSTR_VAL(cryptedbuf)[cryptedlen] = '\0'; in PHP_FUNCTION()
5007 int cryptedlen; in PHP_FUNCTION() local
5029 cryptedlen = EVP_PKEY_size(pkey); in PHP_FUNCTION()
5030 crypttemp = emalloc(cryptedlen + 1); in PHP_FUNCTION()
5035 cryptedlen = RSA_private_decrypt((int)data_len, in PHP_FUNCTION()
5040 if (cryptedlen != -1) { in PHP_FUNCTION()
5041 cryptedbuf = zend_string_alloc(cryptedlen, 0); in PHP_FUNCTION()
5042 memcpy(ZSTR_VAL(cryptedbuf), crypttemp, cryptedlen); in PHP_FUNCTION()
5054 ZSTR_VAL(cryptedbuf)[cryptedlen] = '\0'; in PHP_FUNCTION()
5075 int cryptedlen; in PHP_FUNCTION() local
5095 cryptedlen = EVP_PKEY_size(pkey); in PHP_FUNCTION()
5096 cryptedbuf = zend_string_alloc(cryptedlen, 0); in PHP_FUNCTION()
5105 (int)padding) == cryptedlen); in PHP_FUNCTION()
5114 ZSTR_VAL(cryptedbuf)[cryptedlen] = '\0'; in PHP_FUNCTION()
5134 int cryptedlen; in PHP_FUNCTION() local
5156 cryptedlen = EVP_PKEY_size(pkey); in PHP_FUNCTION()
5157 crypttemp = emalloc(cryptedlen + 1); in PHP_FUNCTION()
5162 cryptedlen = RSA_public_decrypt((int)data_len, in PHP_FUNCTION()
5167 if (cryptedlen != -1) { in PHP_FUNCTION()
5168 cryptedbuf = zend_string_alloc(cryptedlen, 0); in PHP_FUNCTION()
5169 memcpy(ZSTR_VAL(cryptedbuf), crypttemp, cryptedlen); in PHP_FUNCTION()
5183 ZSTR_VAL(cryptedbuf)[cryptedlen] = '\0'; in PHP_FUNCTION()