Skip to content

Tag: openssl

Decrypt aes-256-cbc encoded file with iv = 0

I have an input.DAT file that is encrypted with aes-256-cbd method. I want to decrypt the file using php. When I execute the following command from command line, the file is decrypted successfully. But when I try to use php for decrypting the file using the method openssl_decrypt($data, AES_256_CBC, $encrypti…

openssl_encrypt aes 256 with hash in java

From the php encryption function below: the result of encryption is MyFTCJx8RPzOx7h8QNxEtQgeiNIRwnrJ+uc0V70= And I have try to write this function in Java like this: The result is amF2YXguY3J5cHRvLnNwZYUmrJNv8ycvLua0O9g= Why my java function return the different result from php? And how do I fix the java func…

PHP JWT (JSON Web Token) with RSA signature without library

Anyboby know some solution in PHP to using JWT (JSON Web Token) with RSA signature without library? I tried so hard to find solutions without library or without using composer. All the options that I found use some kind of library. Answer I made my own solution using other examples on the way. Below we have 3…

openssl_decrypt returns blank

I tried the following code and getting the following output The decrypt string ($output1) is blank. Answer Your code is running well but the input data to your decrypt functionality is wrong. You are feeding the openssl_decrypt function with the (original) plaintext and not with the data encrypted by openssl_…

PHP mysqli and SSL

I am trying to configure Galera Cluster over a WAN (VPN is not an option). For obvious reasons I am setting up the connections to require SSL keys, and am having difficulties getting the application …