Jump to content

Rot13 Encryption


Anil231

Recommended Posts

Hi guys,

 

I want to develop a simple encryption program that can take a password as normal text, use rot13 and return an encrpyted password.

 

I've written the html:

 

 

<html>

 

<head>Please enter password</head>

 

<title>Computer Security Project</title>

 

<body>

<form action="testing.php" method="get">

 

 

<textarea name="text" cols"20" row="12"></textarea>

 

<p><input type="submit" value="encrypt"

name="submit" /></p>

 

</form>

</body>

</html>

 

 

I have also written the php code :

 

 

<?php

 

function rot13 ($str)

{

 

$before = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";

$after = "nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM";

 

 

return strtr($string, $before, $after);

 

}

 

?>

 

 

But everytime I try and test it, I just get the code returned no encryption has happened.

 

What am I doing wrong?

 

Hope you guys can help!

Link to comment
Share on other sites

<?php

function rot13 ($str)
{

$before = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
$after = "nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM";


return strtr($string, $before, $after);

}

?>

 

You are using the function by $str not $string. And I believe you are mixing up $before and $after (not sure)

Edited by SocialCloud
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.