PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my alerts
my settings
my profile
Public Pastes
Untitled
3 sec ago
Untitled
5 sec ago
Untitled
6 sec ago
Untitled
10 sec ago
Untitled
10 sec ago
Untitled
11 sec ago
Untitled
14 sec ago
Untitled
15 sec ago
Untitled
By: a guest on Feb 11th, 2012 | syntax:
None
| size: 0.18 KB | hits: 42 | expires: Never
download
|
raw
|
embed
|
report abuse
Copied
<?php
function nCrypt($string, $salt='')
{
define('T_SALT', ($salt == '') ? str_shuffle('A1B26G7H8I9J0KLMNRC3D4E5FSOWXPQTUVYZ') : $salt);
return md5( md5( T_SALT ) . $string );
}
?>
create a
new version
of this paste
RAW Paste Data
<?php function nCrypt($string, $salt='') { define('T_SALT', ($salt == '') ? str_shuffle('A1B26G7H8I9J0KLMNRC3D4E5FSOWXPQTUVYZ') : $salt); return md5( md5( T_SALT ) . $string ); } ?>