noalyss Version-9
Variables
decrypt.php File Reference

Go to the source code of this file.

Variables

 $ciphering = "BF-CBC"
 
 $decryption
 
 $decryption_iv = 0
 
 $decryption_key = openssl_digest(php_uname(), 'MD5', TRUE)
 
 $encryption
 
 $encryption_iv = random_bytes(8)
 
 $encryption_key = openssl_digest(php_uname(), 'MD5', TRUE)
 
 $iv_length = openssl_cipher_iv_length($ciphering)
 
 $options = 0
 
 $simple_string = "Welcome to GeeksforGeeks"
 

Variable Documentation

◆ $ciphering

$ciphering = "BF-CBC"

Definition at line 11 of file decrypt.php.

◆ $decryption

$decryption
Initial value:
= openssl_decrypt ($encryption, $ciphering,
$options
Definition: decrypt.php:15
$encryption
Definition: decrypt.php:26
$decryption_key
Definition: decrypt.php:38
$ciphering
Definition: decrypt.php:11
$encryption_iv
Definition: decrypt.php:19

Definition at line 41 of file decrypt.php.

◆ $decryption_iv

$decryption_iv = 0

Definition at line 35 of file decrypt.php.

◆ $decryption_key

$decryption_key = openssl_digest(php_uname(), 'MD5', TRUE)

Definition at line 38 of file decrypt.php.

◆ $encryption

$encryption
Initial value:
= openssl_encrypt($simple_string, $ciphering,
$encryption_key
Definition: decrypt.php:23
$simple_string
Definition: decrypt.php:5

Definition at line 26 of file decrypt.php.

◆ $encryption_iv

$encryption_iv = random_bytes(8)

Definition at line 19 of file decrypt.php.

◆ $encryption_key

$encryption_key = openssl_digest(php_uname(), 'MD5', TRUE)

Definition at line 23 of file decrypt.php.

◆ $iv_length

$iv_length = openssl_cipher_iv_length($ciphering)

Definition at line 14 of file decrypt.php.

◆ $options

$options = 0

Definition at line 15 of file decrypt.php.

◆ $simple_string

$simple_string = "Welcome to GeeksforGeeks"

Definition at line 5 of file decrypt.php.