Please write a program in c++ or Php to encrypt/decrypt the user input. And print it. Thanks🐍 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Please write a program in c++ or Php to encrypt/decrypt the user input. And print it. Thanks🐍

Program to encrypt/decrypt user input.

8th Sep 2017, 4:40 AM
Quassarian Viper
Quassarian Viper - avatar
1 Answer
+ 2
<?php $input = "mypassword"; $pword = password_hash($input, PASSWORD_DEFAULT); echo $pword; ?>
8th Sep 2017, 5:05 AM
ChaoticDawg
ChaoticDawg - avatar