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.
-1
votes
3answers
40 views
How to secure user member types in a MySQL database
I have a website that will have different member types in a database. A user's member type will be either Individual, Business, Organization, or Admin. How would I go about securing the types so that ...
1
vote
1answer
11 views
sleeping connection (mysql) mcrypt
I have isolated some code within some other guys code which is causing our servers to grind to a halt. This occurs every time an mcrypt function is called.
$iv = ($iv === false) ? ...
0
votes
0answers
12 views
How can I enable the Mcrypt for my live site?
I am working on locklizard integration with ecommerce site, for the I need to enable the MCrypt for my site. I have added libmcrypt.dll through FTP in php folder,I have also added php.ini file and ...
0
votes
1answer
22 views
PHP “Crypt_Blowfish” Class Initiating Errors? [duplicate]
My PHP Crypt_Blowfish class initiation is throwing following error:
Error:
Strict Standards: Non-static method PEAR::raiseError() should not be called statically, assuming $this from incompatible ...
0
votes
1answer
30 views
PHP CRYPT_BLOWFISH Error?
I'm on Redhat and using PHP Crypt_Blowfish and having following error.
ERROR:
Notice: Constant CRYPT_BLOWFISH_AUTO already defined in /usr/share/pear/Crypt/Blowfish.php on line 33 Notice: ...
0
votes
1answer
16 views
Php mcrypt not decrypting data required while using cbc mode
i have the below code for encryption , but the problem is its not decrypting the data as reqired
$salt ='whatever_you_want';
$en= simple_encrypt('data');
echo simple_decrypt($en);
function ...
0
votes
0answers
24 views
Can't seem to get mcrypt working on Arch Linux [migrated]
I'm trying to take the PHP laravel 4 framework for a test run, this is the error message I keep seeing:
Call to undefined function Laravel\mcrypt_create_iv()
Steps I've taken so far:
pacman -S ...
3
votes
2answers
107 views
Decrypting AES CTR Little Endian with PHP
I'm having trouble using PHP to decrypt strings that were encrypted with iOS 5.x's CommonCrypto libraries. Here are the parameters:
Algorithm: AES-128
Mode: CTR
Mode options: CTR Little-Endian
...
2
votes
1answer
29 views
Encrypted data not being inserted into mysql table
I'm trying to upgrade my encryption routines from des to blowfish. I have this function for en/decryption:
function NewCryptStr($EncryptOrDecrypt,$Str)
{
$Key='test';
...
0
votes
2answers
66 views
Is this Data Encryption/Storage Method Secure? [closed]
Let me first say that I know it is a bad idea to store sensitive information in a mysql database, so please don't respond by saying "DON'T DO IT" or something to that effect. I am building a website ...
1
vote
1answer
33 views
mcrypt_encrypt on string containing “:” (colon)
My web application gets URL objects from clients, encrypts it using mcrypt_encrypt , and stores the result in a MySQL DB as type LONGTEXT. This entire thing is done as shown below:
/* $copied ...
0
votes
0answers
40 views
Server Error in Payment Methods, Magento
I hvae magento application in my localhost.
I moved this to my live server (that is plesk one).
When i click on the Payment Methods or Shipping Methods on admin panel (i didnt check this in front ...
0
votes
1answer
35 views
how long is the default key size used by mcrypt_blowfish?
I'm going to use Blowfish cipher for my project in PHP (mcrypt_blowfish). But I have a question regarding the used of mcrypt_blowfish, how long is the deafult key size that was used by this mode of ...
2
votes
0answers
43 views
How safe is my mcrypt function? [closed]
i have to protect some really sensitive information
so excuse me if this is not your typical kind question
I needed a two way encryption function (encryption -> decryption) and i found this
...
0
votes
1answer
24 views
Call to undefined function openssl_public_decrypt, mcrypt installed
I try to make a local copy of a wordpress site. I'm using xampp, and everything went just fine up to this error:
Fatal error: Call to undefined function openssl_public_decrypt() in ...
1
vote
1answer
41 views
Python equivalent of PHP Mcrypt
I wrote the following DES encryption scheme in PHP . It uses a static Initialization Vector to make sure the output and input is one to one mapped
PHP code :
function encrypt($plaintext, $key)
{
...
0
votes
0answers
20 views
how to use RC6 cipher in php?
I need to use RC6 cipher for my project. But, because the installed mcrypt library in my server is mcrypt version 2.5.8, so it's not support for RC6 cipher. RC6 128 bit cipher only supported by ...
1
vote
0answers
62 views
Best approach to encrypt big files with php
I'm developing a project in php where it's needed to encrypt files uploaded by users. This files could be from 1mb to 200mb more or less. Searching on the web, I came to the conclusion that the best ...
2
votes
0answers
26 views
how to install an older version of PHP libmcrypt?
I need to use RC6 cipher for my project. But, because the installed mcrypt library in my server is mcrypt version 2.5.8, so it's not support for RC6 cipher. As wrote in ...
2
votes
1answer
54 views
how to use RC6 in php5?
I need to use RC6 cipher for my project. But, because the installed mcrypt library in my server is mcrypt version 2.5.8, so it's not support for RC6 cipher. As wrote in ...
0
votes
0answers
39 views
Prevent replay attacks with Public/Private Key-Encryption of HTTP GET Parameters using Mcrypt and PHP
I want to create a a game application, for that i want the client to send to server scores and other information that should be encrypted.
I understood that there is a way with mcrypt to encrypt ...
0
votes
0answers
25 views
After Update Mcrypt_encode and mcrypt_decode do not decode corrertly :(
I use this functions to encrypt and decrypt passwords:
public function encrypt($TEXT,$SALT)
{
return trim(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, substr($SALT,-32), $TEXT, ...
1
vote
1answer
60 views
PHP AES 256 encrypt weird characters
I have the following encrypt code:
function encryptData($value){
$key = "7685647tfyr65413285746352413sgfh";
$text = $value;
$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, ...
0
votes
1answer
157 views
How do I link mcrypt?
I am trying to install mcrypt for use on my local machines dev environment. I need to this to install Magento.
I used this answer to install mcrypt, but get the following error:
$ brew link ...
0
votes
1answer
32 views
PHP mcrypt same trailing characters
When running this:
var_dump(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, '12345', '1abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz', MCRYPT_MODE_ECB, ...
0
votes
1answer
28 views
mcrypt characters
I am currently trying to teach myself mcrypt in PHP. I just copied and pasted the following sample code into my php web page:
$size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CFB);
$iv = ...
0
votes
0answers
32 views
Creating a unique user specific hexadecimal key
I am using mycrypt to encode data and then decode it, but the problem I am having is create the $key using pack(). How can I use the user ID for example to create a hexadecimal key that I can use ...
0
votes
1answer
74 views
PHP mcrypt_decrypt randomly failing
I'm struggling with PHP's mcrypt functions. I've never used them before, and they are working fine on my testing server (WAMP PHP 5.4.3), but they fail randomly on the production server (LAMP PHP ...
1
vote
0answers
30 views
mcrypt not decrypting to same length
I am trying to mcrypt some data using a class I created (methods below). This is how you mcrypt data then using pack, then you can use unpack to get the data back.
$packed = ...
0
votes
2answers
53 views
2-way cipher that produces output suitable for use in a URL [closed]
I'm looking for a 2-way encryption cipher that will produce an output similar to that of a hashing routine. I like that they produce values that are appropriate for URLs and are a good length.
Any ...
0
votes
0answers
51 views
PHP mcrypt Working Sometimes Other Times Not - Totally Random
I have a file that encrypts something on site A (let's call it: http://siteA.com/encrypt.php ) and another file on a different site that decrypts the encrypted information from site A...that second ...
0
votes
1answer
85 views
Output size of mcrypt_encrypt
I have a table with a field name. I want to store name-data as encrypted into the field.
The name can be 128 characters. Then what should be the type of the field (eg: varchar(256) or text).
The ...
1
vote
1answer
40 views
mcrypt_crypt and decrypt does result does not match
I've got these 2 methods for encryption and decryption but the input value does not match the output value of the decrypt function, can you please help me find the problem?
private function ...
0
votes
2answers
79 views
Cannot compile program on Ubuntu that uses libmcrypt
I created a C program that uses libmcrypt. I compiled it for many times in a CentOS machine, but now, trying to do the same thing in Ubuntu, I get this:
/tmp/ccM2ugbq.o: In function `encrypt':
...
0
votes
0answers
48 views
SQL AES Advanced Encryption Standard integrity - PHP
Providing your key is not revealed how does the AES encryption/decryption stand up? How secure is its produced hash providing the key is not found?
I understand I could also use Mcrypt with ...
0
votes
1answer
75 views
PHP 5.3.18 Mcrypt error: Cannot open source device
I'm getting an error with the Mcrypt library on my webhost. I'm using the Laravel 4 framework (currently in beta). It's giving the following error:
ErrorException: Warning: mcrypt_create_iv() ...
0
votes
1answer
151 views
Preparing, Storing, Retrieving Encrypted Data in PostgreSQL
Does anyone know how to properly prepare for BYTEA data type insertion into postgresql? I have an encrypted string generated from libmcrypt. I am I wish to store the encryption in a table column ...
0
votes
1answer
132 views
php encryption giving URL characters
Hi I have a "/" which after encoding is, %2F. And the problem is when I add this as part of the URL and open, throws 404 since there is / in between. So my question is is there any way in php where we ...
0
votes
0answers
511 views
mcrypt_decrypt(): The IV parameter must be as long as the blocksize
I'm trying to encrypt some information in my code, so I searched for a way to do this.
I found this on php official website:
...
0
votes
2answers
147 views
Objective-C version of PHP mcrypt_encrypt
From searching all around, I can find a number of links referencing similar issues, but nothing is quite working, its driving me mad....
Can someone please give me a step by step guide on how to ...
1
vote
2answers
275 views
how to sync encryption between delphi and php using dcpcrypt
I'm using Delphi 2009 and most of the answers I've seen here are for 2010+
I am trying to sync encryption (delphi) to decryption (php) and failing.
generate the encrypted string in delphi:
program ...
0
votes
0answers
47 views
Warning: mcrypt_module_close(): 36 is not a valid MCrypt resource in site.com/mcrypt.php
I hope someone can help with this. I have the following code
$mcrypt = new mcrypt();
print_r($mcrypt);
$mcrypt->setKey($passphrase . $_ENV['pasfix']);
print_r($mcrypt);
$decrypted_code = ...
0
votes
1answer
112 views
AES-128 UTF-8 characters in key (iOS ↔ PHP)
After a really long time of research I finally did encoding / decoding on iOS and PHP. I wrote a little algorithm that uses a pool of randomly created 16 Bytes keys both, on iOS and PHP.
The algorithm ...
1
vote
5answers
60 views
Using defined security variables inside a function
I found out that I should not use global variables like global $auth_key for sensitive data's (Correct me if that's not true.) so I wanted to use defined variables for storing security keys.
Inside ...
0
votes
3answers
172 views
Mcrypt Decryption Not Working - PHP
I am using two simple functions to encrypt and decrypt passwords. But the decrypt function is not working right. Here's my output:
Encrypted: �\� ���#�%\��>�3,�o�Sd��c� Decrypted: test123
and ...
0
votes
1answer
2k views
Problems with installing mcrypt support for php54 using Homebrew on Mountain Lion
I am trying to install mcrypt support in php 5.4.11 on Mountain Lion using Homebrew and I am getting problems I cannot resolve.
I had already manually installed PHP 5.4.11 on my Mac. mcrypt had been ...
0
votes
2answers
171 views
PHP Mcrypt error: Cannot open source device
I downgraded to PHP 5.2.8 from PHP 5.4.2 for a reason, I enabled the mcrypt extension, but when I run the function mcrypt_create_iv ($size, MCRYPT_DEV_RANDOM), it doesn't execute properly, and I get ...
-2
votes
1answer
124 views
how to install php extensions on a linux server [closed]
I am installing Magento 1.7.0.2 on a server.
When I go through the installation process it stops because it needs PHP extensions
mcrypt and gd
How would I go about installing these extensions on the ...
2
votes
2answers
3k views
Installing mcrypt extension for PHP on OSX Mountain Lion
Apologies in advance for the potential n00b questions, I am trying to install the mcrypt extension for PHP on my OSX Mountain Lion machine.
The following steps in terminal is what I have done so far ...
2
votes
1answer
111 views
Node.js: how to decipher text ciphered in php?
My PHP ciphering looks like this:
<?
$salt = '…';
$data = '…';
$iv = mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_CFB), MCRYPT_RAND);
$ciphered = ...


