The source code to calculate the md5 hash from plaintext is given below. The given program is compiled and executed successfully.
<?php
//PHP program to calculate the md5 hash from plaintext.
$plaintext = "www.includehelp.com";
printf("Encrypted data: %s<br>", md5($plaintext));
?>
Output:
Encrypted data: 956006613d32bc33569dbb5bd1c32fea
Explanation:
Here, we created a local variable. After that, we called the md5() function that returns the encrypted data and then we printed the returned data using the printf() function on the webpage.
Program/Source Code:
The source code to calculate the md5 hash from plaintext is given below. The given program is compiled and executed successfully.
Output:
Explanation:
Here, we created a local variable. After that, we called the md5() function that returns the encrypted data and then we printed the returned data using the printf() function on the webpage.
need an explanation for this answer? contact us directly to get an explanation for this answer