adodb 최신버전으로 변경

<? 를 <?php 로 변경
This commit is contained in:
2018-01-11 19:28:35 +09:00
parent feff33715f
commit 7b3b674dee
450 changed files with 19425 additions and 32248 deletions
+2 -3
View File
@@ -10,7 +10,7 @@ include_once ADODB_SESSION . '/crypt.inc.php';
class ADODB_Encrypt_SHA1 {
function write($data, $key)
function write($data, $key)
{
$sha1crypt = new SHA1Crypt();
return $sha1crypt->encrypt($data, $key);
@@ -18,7 +18,7 @@ class ADODB_Encrypt_SHA1 {
}
function read($data, $key)
function read($data, $key)
{
$sha1crypt = new SHA1Crypt();
return $sha1crypt->decrypt($data, $key);
@@ -29,4 +29,3 @@ class ADODB_Encrypt_SHA1 {
return 1;
?>