COOKIE加密函数
Freigeben: 2016-07-25 09:11:15
Original
962 Leute haben es durchsucht
示例用法:
$eC = new encodeCookie;
$e = $eC->encodeC ( md5 ('password') );
$d = $eC->decodeC ( $e );
echo "Original Cookie value : ".$d;
echo "
";
echo "Encoded Cookie value : ".$e;
- define ("DOMAIN", "54dev.com");
- define ("PATH", "/");
- define ("COOKIEID", "encodeCookie");
- define ("COOKIEKEY", "raz"); // max 5 chars is good
-
- /**
- * class encodeCookie
- *
- * encode cookies before you send them
- *
- */
- class encodeCookie {
- /**
- * encodeCookie::$config
- *
- * configuration
- *
- */
- var $config;
-
- /**
- * encodeCookie::encodeCookie()
- *
- * constructor
- *
- */
- function encodeCookie () {
- $this->config = array ();
- $this->config['cookie_key'] = COOKIEKEY;
- $this->config['cookie'] = array (
- 'cookie_id' => COOKIEID,
- 'cookie_path' => PATH,
- 'cookie_domain' => DOMAIN,
- );
- }
-
- /**
- * encodeCookie::set_Cookie()
- *
- * sets the cookie
- *
- * @param string $value
- * @param integer $sticky
- */
- function set_Cookie ($name, $value = "", $sticky = 0) {
-
- $exipres = "";
-
- if ($sticky == 1) {
- $expires = time() + 60*60*24*365;
- }
-
- $name = $this->config['cookie']['cookie_id'].$name;
- $newValue = $this->encodeC ($value);
-
- @setcookie($name, urlencode($newValue), $expires, $this->config['cookie']['cookie_path'], $this->config['cookie']['cookie_domain']);
- }
-
- /**
- * encodeCookie::get_Cookie()
- *
- * gets the cookie
- *
- */
- function get_Cookie ($name) {
-
- if ( isset( $_COOKIE[$this->config['cookie']['cookie_id'].$name] ) ) {
- $cookie = urldecode ( $_COOKIE[$this->config['cookie']['cookie_id'].$name] );
- return $this->decodeC ($cookie);
- } else {
- return FALSE;
- }
-
- }
-
- /**
- * encodeCookie::encodeC()
- *
- * encodes the cookie
- *
- */
- function encodeC ($cookie) {
-
- $newcookie = array ();
- $cookie = base64_encode ($cookie);
-
- for ( $i=0; $i $newcookie[ $i ] = ord ( $cookie[ $i ] ) * $this->encodeKey ();
- }
-
- $newcookie = implode ('.', $newcookie);
-
- return $newcookie;
- }
-
- /**
- * encodeCookie::decodeC()
- *
- * decodes the cookie
- *
- */
- function decodeC ($oldcookie) {
-
- $newcookie = array ();
- $cookie = explode ('.', $oldcookie);
-
- for ( $i=0; $i $newcookie[ $i ] = chr ( $cookie[ $i ] / $this->encodeKey () );
- }
-
- $newcookie = implode ('', $newcookie);
- $newcookie = base64_decode ($newcookie);
-
- return $newcookie;
- }
-
- /**
- * encodeCookie::encodeKey()
- *
- * encodes the key
- *
- */
- function encodeKey () {
- $newkey = 0;
- for ( $i=0; $iconfig['cookie_key'] ); $i++ ) {
- $newkey += ord ( $this->config['cookie_key'][ $i ] );
- }
- return $newkey;
- }
-
- }
复制代码
|
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31