blowfish Questions

1

Solved

I am having a bit little bit of trouble understanding php's crypt function. My PHP version is 5.4.7. I want to use crypt to store salted passwords in the database, because as far as I am told, deve...
Tommy asked 29/4, 2013 at 13:42

5

Solved

cipher = Cipher.getInstance("Blowfish"); This throws an exception java.security.NoSuchAlgorithmException: Cipher Blowfish implementation not found. I checked both local_policy.jar and US_export_...
Wisniewski asked 25/12, 2011 at 12:25

2

Solved

Possible Duplicate: Best way to use PHP to encrypt and decrypt passwords? I've been doing a lot with PHP recently and want to make my first login/registration system. As such I've bee...
Sinasinai asked 10/12, 2012 at 18:17

2

Solved

Why is there a difference in blowfish encryption between Crypt::CBC (perl) and OpenSSL (ruby)? Perl use Crypt::CBC; my $cipher = Crypt::CBC->new( -key => 'length32length32length32length32'...
Toul asked 9/11, 2011 at 23:53

6

Solved

I did a series of research on this topic, but unfortunately I couldn't find a perfect way to encrypt and decrypt files in PHP. Which mean what I'm trying to do is find some way to encrypt & dec...
Arianism asked 20/8, 2012 at 4:16

1

Solved

I can't seem to find a source for the differences. I've found this difference in this online decryption tool http://www.tools4noobs.com/online_tools/decrypt/ I have some encrypted Blowfish data t...
Ulrike asked 10/7, 2012 at 21:44

4

Solved

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 ...
Transaction asked 8/2, 2010 at 23:39

2

Solved

I am working on a registration form where I need to encrypt password, I've heard that it is recommended for me to use the Blowfish encryption for passwords, How do you implement a blowfish encrypti...
Automation asked 24/6, 2012 at 3:41

4

I am using some java code that encrypts the contents of a text file using Blowfish. When I convert the encrypted file back (i.e. decrypt it) the string is missing a character from the end. Any idea...
Ackerley asked 27/5, 2012 at 9:35

3

I am supposed to write a PHP script to decrypt Blowfish encrypted data. The data I am receiving for decryption is encrypted by another application (I have no access to it). The data decrypts fin...
Fullmouthed asked 7/4, 2011 at 12:24

1

Solved

There is an application written in PHP which I am converting to Ruby. When encrypting passwords the PHP app uses the following code: if($method == 2 && CRYPT_BLOWFISH) return crypt($pass, ...
Decorticate asked 16/12, 2011 at 16:14

3

Solved

I have a blowfish encryption script in PHP and JAVA vice versa that was working fine until today when I came across a problem. The same content is encrypted differently in Java vs PHP by only 2 ch...
Hartz asked 20/7, 2011 at 9:22

2

I'm running a website with password hashing, but I think the current algorithm is insufficient. I tried to use PHP's crypt() with the blowfish option, but my PHP version is only 5.2 so CRYPT_BLOWFI...
Manifestation asked 10/8, 2011 at 3:3

5

Solved

Is it possible and worth trying to develop some server application using android NDK which will encrypt data (or just use some built in Linux encryption library) passed to it from normal Java based...
Howenstein asked 16/2, 2011 at 8:13

2

I've seen a ton of questions asked about Blowfish and C# and the usual answer is BouncyCastle. However, the project has basically no documentation and I can't find my way around the directory struc...
Faus asked 21/6, 2011 at 21:21

2

Solved

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 th...
Selfdeprecating asked 13/2, 2011 at 10:47

1

Solved

According to the crypt() documentation, the salt needs to be 22 base 64 digits from the alphabet "./0-9A-Za-z". This is the code example they give: crypt('rasmuslerdorf', '$2a$07$usesomes...
Shingly asked 13/1, 2011 at 17:52

2

Solved

I'm creating an application similar to phpmyadmin (database management UI). The user needs to authenticate himself against the database and the application needs to store the credentials somehow. S...
Rattlebox asked 7/9, 2010 at 23:8

1

Solved

I am working on a project where I need to undertake Blowfish encryption and decryption. Is there anything out there that others are using to do this within but cannot find anything within a .NET C#...
Oratory asked 21/4, 2010 at 9:2

1

Solved

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...
Mississippian asked 8/2, 2010 at 23:21

2

Solved

What objective-c implementation of Blowfish would you advice to use? (Or may be I just missed some standard implementations available?)
Wardmote asked 5/11, 2009 at 15:3

© 2022 - 2024 — McMap. All rights reserved.