I am developing a website with the support of new users of the CRM. I'm having trouble with the password. Prompt, what method to encrypt the data, if you use the keys, what and in what order.
Thank you in advance.
Thank you in advance.
curl_setopt($ch, CURLOPT_USERPWD, $userName . ':' . $password);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
Comment