Tagged Questions

0
votes
1answer
35 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
2answers
73 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 …
0
votes
2answers
121 views

Need help with brute force code for crypt(3)

Hello, I am trying to develop a program in C that will "crack" the crypt(3) encryption used by UNIX. The most naive way to do it is brute forcing I guess. I thought I should create an array containing …
0
votes
1answer
75 views

how to use md5() and crypt() together in php and msyql

Hello, I want to use md5() and crypt() together in php login authentication. I tried to use md5(crypt(string),salt); but i can't login in mysql. Does anyone know how to use them together? Thanks …
3
votes
8answers
409 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 …
0
votes
5answers
196 views

What does crypt() do in C?

crypt(text,"k7") I looked it up and apparently 'k7' is the salt, but I have no idea what that means nor what type of output will come from that, anyone know?
0
votes
1answer
21 views

LDAP DB question

If I will store an array of information (account - e.g. fullname, address, userid, password) in a various servers and I would want to encrypt the password using md5, (question is), everytime I'll add …
0
votes
2answers
26 views

Does placing a crypted password into a variable and assigning it to another variable makes a difference to crypting it one time assigned to the said one variable?

Does placing a crypted password into a variable and assigning it to another variable makes a difference to crypting it one time assigned to the said one variable? such as: $myPassword = "1234567"; …
1
vote
3answers
374 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 …
2
votes
5answers
704 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, …
1
vote
1answer
485 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
9answers
998 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 …
1
vote
4answers
752 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() http://uk2.php.net/crypt The outputs look something like this: $1$Vf/.4.1.$CgCo33ebiHVuFhpwS.kMI0 …
0
votes
2answers
471 views

Encrypt/Decrypt across machines is a no-no

I'm using an identical call to "CryptUnprotectData" (exposed from Crypt32.dll) between XP and Vista. Works fine in XP. I get the following exception when I run in Vista: "Decryption failed. Key not …