Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
2k views

Why does crypt/blowfish generate the same hash with two different salts?

This question has to do with PHP's implementation of crypt(). For this question, the first 7 characters of the salt are not counted, so a salt '$2a$07$a' would be said to have a length of 1, as it is ...
6
votes
3answers
267 views

PHP crypt() returning wrong answer

I think i'm losing my marbles here... I've got a problem on my web site where randomly it stops accepting logins. I've now been able to trace it to crypt() behaving very strangely. In my database, ...
5
votes
1answer
917 views

How can I create a Crypt::RSA object from modulus, exponent, and private exponent?

I'm trying to port the following php functionality over to perl: public function loadKey($mod, $exp, $type = 'public') { $rsa = new Crypt_RSA(); $rsa->signatureMode = ...
5
votes
1answer
2k views

What is the correct format for a blowfish salt using PHP's crypt?

I have read the information provided on the PHP Manual Entry for crypt(), but I find myself still unsure of the format for a salt to trigger the Blowfish algorithm. According manual entry, I should ...
4
votes
1answer
214 views

PHP crypt() with sha256 in Zend Server CE 5.5 truncates the supplied salt

During an upgrade from Zend Server CE 5.1 to Zend Server CE 5.5, PHP also got an upgrade from 5.3.5 to 5.3.8. After this transition the login function for a zend application I'm working on suddenly ...
4
votes
3answers
663 views

use python to create compatible ldap password (md5crypt) on windows

Do you know how to create a ldap compatible password (preferred md5crypt) via python on Windows I used to write something like this in Linux but the crypt module is not present on Windows char_set ...
4
votes
4answers
2k views

What to use for password hashing? Any reason not to use jBCrypt?

I'm planning to use jBCrypt for password hashing in a new web application, as it is supposed to be the best from what I've read. As I haven't used it before I'm looking into if there is any reason not ...
3
votes
3answers
77 views

How are Crypt and Salt more secure than MD5 against a brute force attack?

I read on PHP.net that MD5 is useless, and they suggest using crypt + salt. So, I went to their function description and read <?php $password = crypt('mypassword'); // let the salt be ...
3
votes
2answers
197 views

Updating LDAP encrypted passsword via JNDI

I need some pointers how to update an encrypted password in an LDAP (OpenLDAP) of a user within an LDAP tree. The passwords in the LDAP server are prefixed with {crypt} which I suppose indicates that ...
3
votes
2answers
696 views

What is the safest algorithm in Kohana's auth module?

I'd prefer to use the crypt function and use blowfish encryption, but the current implementation of this module uses the hash function, which doesn't offer this encryption method. So, what is the ...
3
votes
8answers
2k views

Is there a way to reverse a crypt() in c?

Not sure if this is possible but I want to be able to start with a string, and then figure out what the input must be into the crypt in order to get this string out. Or maybe it's impossible, which ...
3
votes
5answers
3k views

Can you convert the output of php crypt() to valid MD5?

I have some strings that have been encrypted using the PHP function crypt(). The outputs look something like this: $1$Vf/.4.1.$CgCo33ebiHVuFhpwS.kMI0 $1$84..vD4.$Ps1PdaLWRoaiWDKCfjLyV1 ...
3
votes
9answers
2k views

Python crypt module — what's the correct use of salts?

First, context: I'm trying to create a command-line-based tool (Linux) that requires login. Accounts on this tool have nothing to do with system-level accounts -- none of this looks at /etc/passwd. I ...
3
votes
5answers
1k views

Algorithm behind MD5Crypt

I'm working with Subversion based on Windows and would like to write an easy utility in .NET for working with the Apache password file. I understand that it uses a function referred to as MD5Crypt, ...
2
votes
3answers
94 views

Executing entire perl program from string in Perl

I have a program that is encrypted with Blowfish in a file and a second perl program that prompts for a passphrase that is used to decrypt it into a string, I would like to not have to write the ...
2
votes
1answer
137 views

Storing bcrypt hashes

According to PHP's doc, bcrypt salt are made of "$2a$", a two digit cost parameter, "$", and 22 digits from the alphabet "./0-9A-Za-z" So, if i use the crypt() function to hash my passwords, ...
2
votes
1answer
65 views

Crypt is different on server than on local machine

I am developing an API using PHP (Codeigniter) and Phils RESTserver. I am creating a hash using crypt() with the password and the salt. The problem is that the hash that is the result of the crypt() ...
2
votes
4answers
94 views

crypt() not functioning as needed

I'm using crypt as follows: $pass = crypt($pass, 'd4'); for both insertion and validation of a password against a mysql table. Problem is that if the passwords are similar it generates a similar ...
2
votes
3answers
267 views

Can an MD5 hash have ONLY numbers or ONLY letters in it?

I have been researching but I am clueless. I know that MD5 can have both numbers and letters but if I ever find a case where an MD5 has only numbers or only letters it breaks my script currently
2
votes
1answer
155 views

how to implement php's crypt_md5 in java

I have a simple application in PHP which uses the following code to hash the password and store it in a db. <?php $user_name = "admin"; $password = "1234"; $salt = substr($user_name, 0, 2); $salt ...
2
votes
2answers
120 views

Oracle: Is there a way to encode a value using the unix crypt method?

Is there a way to encode a value using the unix crypt method in oracle 10g? (Other DBMS like MySQL support this)
2
votes
1answer
99 views

Is there a perl module to validate passwords stored in “{crypt}hashedpassword” “{ssha}hashedpassword” “{md5}hashedpassword”

I have a table which stores user login infomration, which contains passwords in the below scheme {crypt}hashedpassword {ssha}hashedpasswordsalted {md5}hashedpassword ..... Is there a perl module ...
2
votes
2answers
196 views

Delphi: crypting resource file

I have this function that should crypt bytes from resource file but it's just crashing my app: function crypt(src: Pointer; len: DWORD): DWORD; var B: TByteArray absolute src; index: DWORD; begin ...
2
votes
2answers
87 views

Which C crypto framework do you recommend for symmetric & asymmetric cryptography?

Which C crypto framework do you recommend for symmetric & asymmetric cryptography?
2
votes
2answers
881 views

Using ruby to generate SHA512 crypt-style hashes formatted for /etc/shadow?

I want to generate SHA512 hashed passwords for inclusion directly into a /etc/shadow file for use with chef's user resource. Normally I'd go to the stdlib's Digest library for this, but it doesn't ...
2
votes
2answers
588 views

How to create md5 hash as the crypt function generates with a md5 salt using the md5 function, not the crypt function?

I prefer using crypt function in php for password encryption and other one way encryption requirements. Because I can use any supported encryption algorithm, by changing the salt and there are few ...
2
votes
1answer
533 views

(PHP) How to correctly implement crypt()

Here is the example from the PHP manual page for crypt(): <?php $password = crypt('mypassword'); // let the salt be automatically generated /* You should pass the entire results of crypt() as the ...
2
votes
1answer
556 views

Ruby string#crypt in c# and php

I have a ruby client program that encrypts a password with string#crypt like so encrypted = password.crypt(SALT) # removing first two characters which actually are the salt for safety return ...
2
votes
1answer
2k views

How do i replace the cakephp password hashing algorithm?

I have an existing database I'm trying to put a cake app on top of. The old app used crypt() in Perl to hash the passwords, I need to do the same in the PHP app. Where is the correct place to make ...
1
vote
2answers
58 views

Alternative to crypt()

I am working on a script and need to save passwords. For development purposes, I have been using the crypt() function because it was easy and available. Now that I am mostly done, I want to replace it ...
1
vote
2answers
41 views

Why should't I use an encryption salt I enter myself and use a function to randomize a salt for me?

I am just typing a salt and on php documentations, people always use some random variable function. What is the disadvantage of typing a salt instead of generating it?
1
vote
1answer
47 views

Porting hashs from php's crypt() to python

I was wondering if there is a python cognate to PHP's crypt() function that performs in a similar way, generating a random salt and embedding it within the saved string. I have a table of hashed ...
1
vote
2answers
55 views

Crypt and send hidden comunication between client and server

I have an application winform client written in C# and a Server application written in php. I need to validate an operation that the client does at the server. When the client sends this validation ...
1
vote
5answers
131 views

Good cryptographic hash functions [closed]

Possible Duplicate: Secure hash and salt for PHP passwords I am making a website, and I need a secure algorithm to store passwords. I was first thinking of bcrypt, but then I found out my ...
1
vote
2answers
1k views

PHP Bcrypt hashing

I want to use Blowfish hashing to hash password. crypt() does not support it in PHP version ( < 5.3) My PHP version is 5.2.14. How can I use Blowfish hashing? Use PEAR Crypt_Blowfish instead?
1
vote
1answer
139 views

Crypt in perl, decrypt in delphi7

I need not so strong crypt method in Perl, which will be compatible decryption in Delphi7. To crypt some string value in Perl which http get from Delphi7. I prefer simple solution based on ...
1
vote
2answers
309 views

Is the crypt() function declared in unistd.h or crypt.h?

I'm using GCC 4.6.0 (on an otherwise unidentified platform). I am using the crypt() function to encrypt a password. I have never used that function before so I checked out the main page: man 3 ...
1
vote
0answers
189 views

How iphone crypt AES256 output 32 Byte Hex String?

Dear Gurus, I have code on java with bouncy castle lib, like this : private static String AES (boolean encrypt, String inputString, String keyString) { byte [] input, cipherText; int ...
1
vote
1answer
144 views

php async crypt

I'm looking for an asynchronous crypt algorithm to digitally sign a string with php and verify the signature by using a mobile app (mostly ios or android). What could be the most simple and effective ...
1
vote
2answers
1k views

How to create and store password hashes with Blowfish in PHP

1) How do you create secure Blowfish hashes of passwords with crypt()? $hash = crypt('somePassword', '$2a$07$nGYCCmhrzjrgdcxjH$'); 1a) What is the significance of "$2a"? Does it just indicate that ...
1
vote
2answers
329 views

Problem verifying in C# what was signed in Java (RSA)

I was hoping I might get some help here so that I might finally solve this frustrating problem. On the java side of things they sign with the following code: public static void main(String[] args) ...
0
votes
0answers
92 views

Is there an OpenCL implementation of the unix crypt(3) function?

I want to use the unix crypt function in an OpenCL/CUDA program. Does something like that already exist or will I have to translate it on my own?
0
votes
0answers
19 views

Use chilkat in .net to recreate PHP crypt result

In PHP I have used the crypt function to a single sign on specifcation: <?php $key ="ABCDEFGH"; $sec = crypt(substr($key,0,8), 'PE'); echo $key; echo "<br>"; echo $sec; ?> Produces: ...
0
votes
3answers
110 views

C++ crypt libraries in boost or any else

I would like to ask if boost has some libraries useful for crypting tasks. well if boost does not have such libs I would like to hear what crypt libraries would you recommend.(some widly used libs) ...
0
votes
1answer
144 views

clarification for crypt SHA-512 algorithm (c#)

EDIT: Sorry I forgot to mention, I'm not using the implemented sha512 crypt because as far as I can tell it doesn't involve a salt value or a specified number of rounds to compute the hash with. Okay ...
0
votes
1answer
162 views

How can I convert MD5 hex strings to base-64 MD5 strings?

I have a bunch of MD5-hashed passwords which I would like to convert to crypt-style MD5. If I have the plaintext I can easily create both: % echo -n 'testpass' | md5sum ...
0
votes
1answer
75 views

Help needed with perl crypt function

I am trying to generate a unique string/id given another relatively large string(consisting of a directory path name), thought of using crypt function. However, it's not working as expected, most ...
0
votes
1answer
61 views

where can i find source code for libcrypto++?

I am using libcrypto++ for aes encryption. I would like to add in my code the methods: EVP_CipherInit_ex(), EVP_CipherUpdate(), EVP_CipherFinal_ex(). Where can I find this source codes? thx. ...
0
votes
3answers
42 views

Exclude certain characters generated by crypt()

I'm using crypt() in PHP to generate a unique token string. My problem is that some tokens generated include periods (.) at the end of the token, and this is confusing for users that need to copy and ...
0
votes
3answers
175 views

Find salt in the blowfish encrypted hash

This is kind of very basic question. I have searched for help regarding this but couldn't find any concrete answer to it. Therefore i am asking it specifically here. The use case is, i want to find ...

1 2