Please write a program in c++ or Php to encrypt/decrypt the user input. And print it. Thanks🐍 | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
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 Réponse
+ 2
<?php $input = "mypassword"; $pword = password_hash($input, PASSWORD_DEFAULT); echo $pword; ?>
8th Sep 2017, 5:05 AM
ChaoticDawg
ChaoticDawg - avatar