suchen
Heimphp教程php手册PHP加密解密类实例分析

PHP加密解密类实例分析

   这篇文章主要介绍了PHP加密解密类,实例分析了php实现加密与解密的原理与相关技巧,非常具有实用价值,需要的朋友可以参考下

  本文实例讲述了PHP加密解密类。分享给大家供大家参考。具体分析如下:

  这段代码支持 数组加密 , 密文有效期, 各种对称加密

  其中参数如下:

  * @use ption::en($string, $key);

  * @param String $string 需要加密的字串

  * @param String $skey 密钥

  * @param int $expiry 密文有效期, 加密时候有效, 单位 秒,0 为永久有效

  * @return String

  1. php代码如下:

  ?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

/*

* -工具库-加密解密码

*/

class ption

{

private static $original = array('=', '+', '/');

private static $later = array('O0O0O', 'o0O0o', 'oo00o');

function __construct()

{

}

private static function md5($skey = '')

{

$skey = $skey ? $skey : 'ui' ; //uicms::_config('security/authkey');

return md5(substr($skey, 0, 16));

}

/**

* @use ption::en($string, $key);

* @param String $string 需要加密的字串

* @param String $skey 密钥

* @param int $expiry 密文有效期, 加密时候有效, 单位 秒,0 为永久有效

* @return String

*/

static public function en($string = '', $skey = '', $expiry=0)

{

if( is_array( $string ) )

{

$string = json_encode($string); // uicms::json($string, true, 'en');

}

$string = str_pad($expiry ? $expiry + TIME : 0, 10, 0).$string;

$strArr = str_split(base64_encode($string));

$strCount = count($strArr);

$skey = static::md5($skey);

foreach (str_split($skey) as $key => $value)

{

$key

}

return str_replace(self::$original, self::$later, join('', $strArr));

}

/**

* @use ption::de($string, $key);

* @param String $string 需要解密的字串

* @param String $skey 密钥

* @return String

*/

static public function de($string = '', $skey = '')

{

$strArr = str_split(str_replace(self::$later,self::$original,$string),2);

$strCount = count($strArr);

$skey = static::md5($skey);

foreach (str_split($skey) as $key => $value)

{

$key

}

$result = base64_decode(join('', $strArr));

if(substr($result, 0, 10) == 0 || substr($result, 0, 10) - TIME > 0)

{

return substr($result, 10);

}

else

{

return false;

}

}

}

  2. 用法如下:

  ?

1

2

3

4

5

6

$str['username'] = 'oschina';

$str['pw'] = '123456';

$str['huoxin'] = '!@#$%^&';

echo "string : " . $str . "
";

echo "encode : " . ($enstring = ption::en($str)) . '
';

echo "decode : " . ption::de($enstring);

  希望本文所述对大家的php程序设计有所帮助。

Stellungnahme
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

Heiße KI -Werkzeuge

Undresser.AI Undress

Undresser.AI Undress

KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover

AI Clothes Remover

Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool

Undress AI Tool

Ausziehbilder kostenlos

Clothoff.io

Clothoff.io

KI-Kleiderentferner

AI Hentai Generator

AI Hentai Generator

Erstellen Sie kostenlos Ai Hentai.

Heißer Artikel

R.E.P.O. Energiekristalle erklärten und was sie tun (gelber Kristall)
1 Monate vorBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Beste grafische Einstellungen
1 Monate vorBy尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Crossplay haben?
1 Monate vorBy尊渡假赌尊渡假赌尊渡假赌

Heiße Werkzeuge

WebStorm-Mac-Version

WebStorm-Mac-Version

Nützliche JavaScript-Entwicklungstools

SublimeText3 Linux neue Version

SublimeText3 Linux neue Version

SublimeText3 Linux neueste Version

Herunterladen der Mac-Version des Atom-Editors

Herunterladen der Mac-Version des Atom-Editors

Der beliebteste Open-Source-Editor

SublimeText3 Englische Version

SublimeText3 Englische Version

Empfohlen: Win-Version, unterstützt Code-Eingabeaufforderungen!

SAP NetWeaver Server-Adapter für Eclipse

SAP NetWeaver Server-Adapter für Eclipse

Integrieren Sie Eclipse mit dem SAP NetWeaver-Anwendungsserver.