mcrypt
Crypt large amount of data in PHP
I develop a software which have to crypt data before to send it to another instance of the same soft (which have to decrypt it of course). I first use op开发者_运维知识库enssl_public_encrypt / openssl[详细]
2023-03-21 04:07 分类:问答Java decrypt error: data not block size aligned
I\'m trying to encrypt data between my android application and a PHP webservice. I found the next piece of code in this website: http://schneimi.wordpress.com/2008/11/25/aes-128bit-encryption-between[详细]
2023-03-16 21:53 分类:问答Mimic CRYPT_BLOWFISH with MCRYPT_BLOWFISH
My question is how do I get the same result from mcrypt as I would get from crypt, with respect to blowfish?[详细]
2023-03-16 09:37 分类:问答Php mcrypt isn't working properly
I have this code: $original = \'zner5\'; $new = mcrypt_decrypt( MCRYPT_3DES, \'keyCodeEncryption\', \'C¹`Û‡”fa\', \'ecb\');[详细]
2023-03-14 13:34 分类:问答Using PHP mcrypt with Rijndael/AES
I am trying to encrypt some text messages using mcrypt from php and the cipher Rijndael, but I am not sure about the MCRYPT_MODE_modename (according to PHP\'s manual these are available \"ecb\", 开发者[详细]
2023-03-14 08:41 分类:问答Can't compile mcrypt (configure failed: mhash_keygen in -lmhash... no)
Problem solved by Shawn Chin in Answer 1. And what drives me crazy is that to compile mcrypt extension, only libmcrypt is enough, there is no need to compile mhash and mcrypt :([详细]
2023-03-13 10:57 分类:问答PHP and mcrypt security on remote post
Hey guys. I\'m trying to make an appstore for a web service and i\'m stucked at the security part. The main idea for appstore is this: on the already installed platform, the user can install themes,[详细]
2023-03-06 19:38 分类:问答Encrypting files with php/mcrypt is corrupting docx (and other Microsoft Office 2007) files but others are fine
I\'m working with a CodeIgniter application to encrypt uploaded files then decrypt them when downloaded so they can be stored safely (alongside other security measures). This is all working fine, apar[详细]
2023-03-06 18:44 分类:问答How can you override the 24 character mcrypt salt limit?
I would like to use a salt that has more than 24 characters with mcrypt. mcrypt_encrypt(MCRYPT_RIJNDA开发者_如何学JAVAEL_256, $salt, $text, MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT[详细]
2023-03-03 13:46 分类:问答mcrypt_generic_init: Meaning of the iv parameter
I am reviewing a part of code using php mcrypt library to encrypt some binary data using the Blowfish cipher. Basically it creates a blowfish descriptor in the MCRYPT_MODE_CBC mode and then calls the[详细]
2023-03-02 13:39 分类:问答