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.
1 Antwort
+ 2
<?php
$input = "mypassword";
$pword = password_hash($input, PASSWORD_DEFAULT);
echo $pword;
?>