Tagged Questions
MCrypt, and the accompanying libmcrypt, are intended to be replacements for the old Unix crypt, except that they are under the GPL and support an ever-wider range of algorithms and modes.
53
votes
7answers
43k views
Best way to use PHP to encrypt and decrypt?
I plan to store foreign account information for my users on my website, aka rapidshare username and passwords, etc... I want to keep information secure, but i know that if i md5 their information, i ...
22
votes
9answers
2k views
Best practices for storing bank information in a database
Summary of answers:
Don't do it. The legal and financial implications will be disastrous. Look for established third party solutions or hire an expert. Never store any sensitive information on a ...
7
votes
1answer
1k views
PHP: Mcrypt - which mode?
I've been testing out the various modes available in PHP's mcrypt function. ECB is the mode used in most tutorials, but isn't recommended by both the just linked page and some users, so I reckon that ...
7
votes
2answers
259 views
Data corruption: Where's the bug‽
Last edit: I've figured out what the problem was (see my own answer below) but I cannot mark the question as answered, it would seem. If someone can answer the questions I have in my answer below, ...
7
votes
6answers
372 views
Overloading a Native PHP Function to Encypt Data for HIPAA Compliance
Background Information:
I'm part of a team of developers that runs a web application that stores and retrieves HIPAA (medical) data. Recently, the HIPAA guidelines were updated to include a policy ...
6
votes
2answers
1k views
PHP crypt and salt - more clarification please
I was here yesterday and got some really great answers. I took what I got and put together, what I think will be a fairly secure algorithm. I'm having a problem using blowfish with a for loop that ...
5
votes
1answer
1k views
Cross platform (php to C# .NET) encryption/decryption with Rijndael
I'm currently having a bit of problem with decrypting a message encrypted by php mcrypt.
The php code is as following:
<?php
//$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, ...
5
votes
3answers
404 views
How are my C# and PHP decryption methods different?
I've inherited some C# code and need to port it to PHP. Here it is:
string key = "some key";
string strEncrypted = "some encrypted string";
byte[] hashedKey = new ...
4
votes
1answer
70 views
PHP mcrypt to ColdFusion decrypt
I am working in a PHP app we have a particular string that we need to encrypt before storing in a database. I can do this in PHP with not problem using mcrypt with a key and a iv. Currently I'm trying ...
4
votes
4answers
144 views
Keeping secret key SECRET - within Android app.. any ideas
I have an mcrypt encryption and decryption routine within one of my Android apps. This is essentially decrypting a string which is fetched via. remote call. Naturally the "secret key" is stored ...
4
votes
3answers
467 views
Encryption: Use of initialization vector vs key?
I am using PHP's mcrypt library and the AES-256 (rijndael) algorithm, which requires both a key + initialization vector to run.
My logical brainside isn't really going along with this. Isn't just ...
4
votes
2answers
3k views
Rijndael 256 Encrypt/decrypt between c# and php?
UPDATED
I have made the changes to the C# code so it uses a block size of 256. but now the hello world looks like this http://pastebin.com/5sXhMV11 and I cant figure out what I should use with ...
4
votes
5answers
3k views
Which PHP mcrypt cipher is safest?
So guys, there's plenty of different ciphers available - but which one is the safest to use nowadays?
List: http://www.php.net/manual/en/mcrypt.ciphers.php
4
votes
2answers
3k views
How to make Ruby AES-256-CBC and PHP MCRYPT_RIJNDAEL_128 play well together
I'm generating data to send from a Ruby stack to a PHP stack. I'm using the OpenSSL::Cipher library on the Ruby side and the 'mcrypt' library in PHP. When I encrypt using 'aes-256-cbc' (256-bit ...
3
votes
1answer
424 views
Decrypting strings in Python that were encrypted with MCRYPT_RIJNDAEL_256 in PHP
I have a function in PHP that encrypts text as follows:
function encrypt($text)
{
$Key = "MyKey";
return trim(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $Key, $text, MCRYPT_MODE_ECB, ...
3
votes
1answer
152 views
Any Equivalent for mcrypt (in PHP) to use in Java?
Can any one tell about any library that can be used in java, which gives the same result if operation was done in PHP using the mcrypt library.
i want to actually encrypt a string in Java using AES, ...
3
votes
2answers
236 views
.Net and PHP Rijndael encryption not matching
At first i thought it was the padding since mcrypt uses zero padding but i changed the php to use PKCS7 and get the same exact results
Can anyone help? I think it has something to do with the padding ...
3
votes
1answer
290 views
php mcrypt CBC mode encryption/decryption problem
I have a problem with CBC mode when I try to encrypt/decrypt some text using php's mcrypt extension. I've created a class to perform this operations, it works fine with other modes but CBC.
The ...
3
votes
1answer
143 views
Mcrypt library writing result to file
I'm trying to write encrypted data to a file. However, when reading it back into the program and trying to decrypt it, I only get garbage back out. Without writing it to a file it seems to work.. What ...
3
votes
3answers
446 views
Encrypted data in URLs
I am developing a PHP application to manage orders for a company. To view an order the URL is currently /orders/view/3502.
I don't want the order ID number to appear in the URL, so I used ...
3
votes
1answer
802 views
Un-encrypting / re-encrypting a ColdFusion encrypted string in PHP
I'm in the unenviable position where I have to maintain functionality with an existing ColdFusion application. As part of it's login process the Coldfusion app stores a cookie with an encrypted ...
3
votes
1answer
5k views
PHP Mcrypt - Encrypting / Decrypting file
Trying to write a couple of functions that will encrypt or decrypt a file and am using the class found here to try and accomplish this:
...
3
votes
1answer
1k views
Part II: How to make Ruby AES-256-CBC and PHP MCRYPT_RIJNDAEL_128 play well together
This question is a continuation of my last one, regarding How to make Ruby AES-256-CBC and PHP MCRYPT_RIJNDAEL_128 play well together. I've got that working now, but I'm still struggling to go the ...
3
votes
3answers
247 views
How to deal with special characters in a string
I have a php script creating an encoded value, for example:
m>^æ–S[J¯vÖ_ÕÚuÍÔ'´äœÈ‘ ®@M©t²#÷[Éå¹UçfU5T°äÙ“©”ˆÇVÝ] [’e™a«Ã°7#dÉJ>
I then need to decode this in a vb.net application
The ...
2
votes
1answer
58 views
Decrypting mcrypt encoded text with node.js
I have text encoded with Blowfish using PHP's mcrypt:
$td = mcrypt_module_open ('blowfish', '', 'cfb', '');
$iv = mcrypt_create_iv (mcrypt_enc_get_iv_size ($td), MCRYPT_RAND);
mcrypt_generic_init ...
2
votes
3answers
244 views
Enabling or Compiling PHP with mcrypt?
phpMyAdmin states that the mcrypt extension is missing. I do have php_mcrypt.dll (in the ext folder) and also libmcrypt.dll (in the PHP root folder), and I did enable
extension=php_mcrypt.dll
in ...
2
votes
1answer
76 views
Encryption/Hashing issues
I'm working on a little script that will allow me to store relatively secure information in a cookie to validate a user login without the use of sessions. Part of the output is an encrypted salt to ...
2
votes
1answer
83 views
Mysql and Mcrypt Problem with PHP
I've seen this asked a few times, but not exactly how I'm going to ask it here... Hopefully this is ok with you guys.
Basically I have this script that works fine and will print my result without a ...
2
votes
1answer
526 views
How to add/remove PKCS7 padding from an AES encrypted string?
I'm trying to encrypt/decrypt a string using 128 bit AES encryption (ECB). What I want to know is how I can add/remove the PKCS7 padding to it. It seems that the Mcrypt extension can take care of the ...
2
votes
1answer
75 views
What could cause PHP mcrypt to mangle data?
I'm using an mcrypt function to encrypt a block of text using TripleDES. 90% of the time it works as it should and I can decrypt just fine. The other 10% though I just cannot decrypt it at all - as if ...
2
votes
3answers
428 views
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: ...
2
votes
1answer
595 views
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", "cbc", ...
2
votes
2answers
358 views
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_RIJNDAEL_256, $salt, $text, MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, ...
2
votes
2answers
222 views
mcrypt encrypt adding s bunch of '%00' to end of string
Working with OAuth and encrypting the keys with the following function with a string which we'll call 'foo' (actually an OAuth token)
public function encrypt( $text )
{
// add end of text ...
2
votes
2answers
186 views
Encryption: Testing that a string is properly decrypted?
Here's a theoretical one that not only applies to PHP, but probably to more languages.
Let's say that I encrypt a string with the mcrypt library using and the AES-256 cipher. The string, encrypted, ...
2
votes
1answer
513 views
PHP AES encryption… no idea what I'm doing
I don't know much about encryption, but I was able to get AES working in PHP... somewhat. Here are a couple functions that I am using:
function aes_decrypt($val,$ky)
{
...
2
votes
3answers
1k views
Issue with PHP mcrypt function
I use the following function to decrypt data on my server:
function decrypt($key, $text) {
return trim(mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, base64_decode($text), MCRYPT_MODE_ECB, ...
2
votes
1answer
619 views
AES in javascript that matches PHP's mcrypt
Is there any javascript libs that lets you encrypt and decrypt 256 bit AES the way you do it with mcrypt in PHP (and get the same result of course)? I want to give it a variable-length message and a ...
2
votes
1answer
793 views
mcrypt blowfish php slightly different results when compared to java and .net
Here is some example code with altered key values and payload:
$key = '/4rTInjwg/H/nA==';
$key = base64_decode($key);
$data = ...
2
votes
2answers
371 views
Cryptography libraries conflict (MCrypt, libgcrypt)
I'm trying to perform encryption and decryption (Rijndael 256, ecb mode) in two different components:
1. PHP - Server Side (using mcrypt)
2. C + + - Client Side (using gcrypt)
I ran into a problem ...
2
votes
1answer
1k views
mcrypt_generic vs mcrypt_encrypt
Does anyone know the difference between mcrypt_generic and mcrypt_encrypt when it comes to encryption in PHP?
2
votes
3answers
361 views
Using mcrypt to pass data across a webservice is failing
I'm writing an error handler script which encrypts the error data (file, line, error, message etc) and passes the serialized array as a POST variable (using curl) to a script which then logs the error ...
2
votes
2answers
1k views
AES encryption with PyCrypto and decryption with mcrypt
For some sensitive data I decided to store it AES-encrypted on disc. I've implemented the encryption using PyCrypto.
Furthermore, the data is important, and the stored encrypted data will be my only ...
2
votes
3answers
628 views
Where should one store the cipher key when using AES encryption with PHP?
I am implementing AES-256 bit encrpytion in my web app:
http://www.utoxin.name/2009/07/automatic-db-field-encryption-in-cakephp/
One of the steps says to store the cipher used and key in a boostrap ...
2
votes
2answers
2k views
PHPMyAdmin is complaining that 'mcrypt' isn't available — am I bothered?
I've set up PHPMyAdmin on a Mac, and it's complaining that it can't load the 'mcrypt' function(s). Apparently the stock install of PHP on Macs doesn't have it.
Can anyone tell me what the ...
2
votes
2answers
634 views
PHP: mcrypt mangles beginning of string to garbage
I need medium to strong encryption on serverside, so I thought I would use mcrypt with PHP. If I use the functions below the beginning of my original string turns into binary garbage after decryption. ...
2
votes
1answer
532 views
How to use CBC encryption mode in PHP
I'm trying to encrypt a string, 50-150 characters long, with AES in a mode other than ECB (due to security issues). I wrote an encryption class and am able to encrypt/decrypt perfectly in ECB mode, ...
2
votes
2answers
3k views
Encrypting data in Cocoa, decoding in PHP (and vice versa)
The situation I'm trying to solve: in my Cocoa app, I need to encrypt a string with a symmetric cipher, POST it to PHP, and have that script decode the data. The process needs to work in reverse for ...
2
votes
5answers
4k views
mcrypt and IIS - module does not load in PHP
I have Windows 2003 Standard, IIS 6, PHP, MySQL and amy trying to get mcrypt working so I can use phpMyAdmin.
I have uncommended php_mcrypt.dll in php.ini and this file is in my extensions folder ...
1
vote
1answer
88 views
Decrypting blowfish-ecb with nodejs crypto vs php's mcrypt
I'm trying to decode the following base64-encoded ciphertext in Node.js with the built-in crypto library
...