Heim >php教程 >php手册 >不上头条不罢休!什么文件也加密?

不上头条不罢休!什么文件也加密?

WBOY
WBOYOriginal
2016-06-06 19:32:361424Durchsuche

好不好?强不强? http://www.codepearl.com/files/200.html PHP 源码与演示: 源码出处演示出处 ?php//转自:http://www.codepearl.comdefine("PUBLIC_KEY","YOUR_PUBLIC_KEY");//Secret Keydefine("PRIVATE_KEY","ABCD1234");//Eight bitrequire_once("PhpE

好不好?强不强?

http://www.codepearl.com/files/200.html PHP

源码与演示:源码出处 演示出处

不上头条不罢休!什么文件也加密? 不上头条不罢休!什么文件也加密?
<?php

//转自:http://www.codepearl.com
define("PUBLIC_KEY","YOUR_PUBLIC_KEY");	//Secret Key
define("PRIVATE_KEY","ABCD1234");		//Eight bit

require_once("PhpEncryptFiles.inc.php");
$phpEncryptFiles=New PhpEncryptFiles(PUBLIC_KEY, PRIVATE_KEY);

//Example 1
$text=" Hello world ! ";

$str= $phpEncryptFiles->encrypt($text);
$dec= $phpEncryptFiles->decrypt($str);

echo "<hr> Original: ".$text;
echo "<hr> Encoded: ".$str;
echo "<hr> Decoded: ".$dec;


?>
<?php

//转自:http://www.codepearl.com


define("PUBLIC_KEY","YOUR_PUBLIC_KEY");	//Secret Key
define("PRIVATE_KEY","ABCD1234");		//Eight bit

require_once("PhpEncryptFiles.inc.php");
$phpEncryptFiles=New PhpEncryptFiles(PUBLIC_KEY, PRIVATE_KEY);


$text=file_get_contents("weisuo.jpg");
$str= $phpEncryptFiles->encrypt($text);

$mimeType="image/jpeg";
$phpEncryptFiles->decryptAndRender($str,$mimeType);

?>
<?php


echo "移步:http://www.codepearl.com/files/200.html";
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
Vorheriger Artikel:数组数据转换为xml格式Nächster Artikel:CKeditor的分页问题