Guest User

Untitled

a guest
Jan 19th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 3.0.8.0
  8. * @ Author : DeZender
  9. * @ Release on : 25.09.2017
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. if (!(defined( 'ABSPATH' ))) {
  15. exit( 'لطفآً از اجرای مستقیم این فایل خودداری نمایید!' );
  16. }
  17.  
  18. if (!(defined( 'RTL_ENCRYPTION_KEY' ))) {
  19. define( 'RTL_ENCRYPTION_KEY', 'd0a7e7997b6d5fcd55f4b5c32611b87a' );
  20. }
  21.  
  22. if (!(function_exists( 'mc_encrypt' ))) {
  23. function mc_encrypt($encrypt, $key)
  24. {
  25. $encrypt = serialize( $encrypt );
  26. $iv = mcrypt_create_iv( mcrypt_get_iv_size( MCRYPT_RIJNDAEL_256, MCRYPT_MODE_CBC ), MCRYPT_DEV_URANDOM );
  27. $key = pack( 'H*', $key );
  28. $mac = hash_hmac( 'sha256', $encrypt, substr( bin2hex( $key ), -32 ) );
  29. $passcrypt = mcrypt_encrypt( MCRYPT_RIJNDAEL_256, $key, $encrypt . $mac, MCRYPT_MODE_CBC, $iv );
  30. $encoded = base64_encode( $passcrypt ) . '|' . base64_encode( $iv );
  31. return $encoded;
  32. }
  33. }
  34.  
  35. if (!(function_exists( 'mc_decrypt' ))) {
  36. function mc_decrypt($decrypt, $key)
  37. ....................................................
  38. .............................
  39. .........
Advertisement
Add Comment
Please, Sign In to add comment