Skip to content
Advertisement

Convert VB.NET Encrypt/Decript old code to PHP 5.3

I am trying to convert VB.NET Encrypt/Decrypt to PHP. The issue is we can not update the PHP version and the server supports only PHP5.3

VB.NET Sample Output Link http://www.tattoogenda.com/LoginTest.aspx

VB.NET Output is: Ao5ZnFYo344iWqv/Jr9euw==

PHP OutPut is: NzmRRxTaXgWFIPx/SqODog== VB.NET Code as below:

JavaScript

PHP Test link Output: http://www.tattoogenda.com/app-api/logintest.php

PHP Code:

JavaScript

?>

Advertisement

Answer

The VB code uses a 32 bytes key so in the PHP code AES-256-CBC is correct. Also Rfc2898DeriveBytes() applies an iteration count of 1000 by default (and SHA1 as digest), which must therefore also be used in the PHP code. Since the VB code derives both, the 32 bytes key and the IV, 32 + 16 must be specified as size in the PHP code:

JavaScript

Of the returned result, the first 32 bytes are the key, the following 16 bytes are the IV:

JavaScript

$key and $iv are to be used directly in openssl_encrypt()/decrypt(), i.e. the explicit hashing with SHA1 is to be removed for key and IV.

The passed plaintext must be UTF-16LE encoded before encryption (either inside or outside of encrypt_decrypt()), e.g. with

JavaScript

Note that the start encoding is the third parameter and the destination encoding is the second parameter.

An encryption of Hello Asif returns 1N1U0Oy81PGOm/Yqdp9sT5iyPgPFxsc8Q8mADNa8BzQ= in accordance with the VB code.

For decryption, the procedure is analogous.

Note that for security reasons the salt (denoted here as $secret_iv) should be randomly generated for each key derivation. The salt is not secret and can be sent along with the ciphertext (usually concatenated). Also, an iteration count of 1000 is generally too small for PBKDF2.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement