web/event_list.php
changeset 1000 c294569b0725
parent 998 bf99ad0ba5ff
child 1001 df016fc8bbdb
equal deleted inserted replaced
999:2ac0430550ff 1000:c294569b0725
   100 		
   100 		
   101 		foreach($files as $ind_file) {
   101 		foreach($files as $ind_file) {
   102 			if (stripos($ind_file, '.') !== 0) {
   102 			if (stripos($ind_file, '.') !== 0) {
   103 				$token = base64_encode(
   103 				$token = base64_encode(
   104 					$iv .
   104 					$iv .
   105 					openssl_encrypt(
   105 					@openssl_encrypt(
   106 						$iv.$ind_file,
   106 						$iv.$ind_file,
   107 						'aes256',
   107 						'aes256',
   108 						hash('sha256', SECRET, true),
   108 						hash('sha256', SECRET, true),
   109 						0
   109 						0
   110 					)
   110 					)