PHP program to calculate the md5 hash from plaintext

Here, we are going to learn how to calculate the md5 hash from plaintext in PHP?
Submitted by Nidhi, on November 22, 2020 [Last updated : March 14, 2023]

Calculating Md5 Hash from Plaintext

Here, we will calculate the md5 hash using the md5() function that encrypts the plaintext.

PHP code to calculate the md5 hash from plaintext

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.

More PHP Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.