cotonti.com : owencrypt - One way encyption class https://www.cotonti.com Neueste Themenbeiträge Cotonti en Thu, 30 Jul 2026 08:29:07 -0000 Kilandor ]]> So, 29 Aug 2010 10:12:52 -0000 GHengeveld
As others have said before me, you're basically combining various existing encryption techniques and adding a salt. This will hardly result in anything more secure than current encryption standards (s.a. MD5 or SHA1).

As urlkiller mentioned, PHP isn't suitable for stuff like this. In my opinion, when you need anything better than MD5, you're better off using another programming language (I would recommend you try Malbolge).]]>
So, 29 Aug 2010 06:17:44 -0000
urlkiller ok ist a bit fun but dont very secure because you would need to use matrix-calculation and other de/encryption algoritms and not these because they are just too well documented and COULD be reversed.]]> So, 29 Aug 2010 04:27:47 -0000 Kilandor Its just a bunch of crap all piled together.

As oc said, this is no more secure than doing sha1 and md5 together, other than the fact you basicly did a salt with it first.

A simple sha1 or md5 + salt would be secure enough, or sha1+md5 together]]>
Fr, 20 Mär 2009 12:22:08 -0000
oc
All you do is combining existing algorithms, it is also slow because you encode bigger and bigger strings consecutively. It is no more secure considering we know the code path. So, a number/letter/[*-=?%&{}] MD5 hash is a lot better.]]>
Do, 19 Mär 2009 21:52:30 -0000
magneum3
function owencrypt($text){$text = strtoupper($text);$text = str_word_count($text) . str_rot13($text);$text = addslashes($text);$text = sha1($text);$text = base64_encode($text);$text = convert_uuencode($text);$text = md5($text);$text = bin2hex($text);$text = strlen($text).$text;$text = strrev($text);return $text;}

an example of using this
$string = "This is the string that will be encoded!";
$encodedstring = owencrypt($string);
echo $encodedstring;
this will return:
332353362346934363036336935646734623431646267383665323166323832646
]]>
Do, 19 Mär 2009 21:27:56 -0000