Tagged Questions
Blowfish is a block cipher designed in 1993 to be fast on the general purpose CPUs of the time. It features a 64 bits block size and a variable key size up to 448 bits.
13
votes
6answers
8k views
AES vs Blowfish for file encryption
I want to encrypt a binary file. My goal is that to prevent anyone to read the file who doesn't have the password.
Wich is the better solution, AES or Blowfish with the same key length? We can assume ...
12
votes
4answers
308 views
Why does the Blowfish output in Java and PHP differ by only 2 chars?
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 ...
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 ...
7
votes
2answers
426 views
How to use BouncyCastle in C# for Blowfish one-way hashing?
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 ...
6
votes
5answers
709 views
Using Android NDK for encryption of data passed from normal android app
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 ...
6
votes
2answers
2k views
Blowfish objective-c implementation
What objective-c implementation of Blowfish would you advice to use? (Or may be I just missed some standard implementations available?)
6
votes
4answers
5k views
Simple encryption implementation in C
I've used a nice public domain C++ DES implementation before, but now I need some simple, basic, fast cryptography for an embedded system.
It doesn't need to be unbreakable, but it does need to ...
5
votes
2answers
598 views
PHP Secure Session
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. SSL ...
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
171 views
Difference in blowfish encryption between perl and ruby
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', ...
4
votes
2answers
496 views
Choosing a encryption key from Diffie-Hellman output
I implemented Diffie–Hellman key exchange in Java with some large groups from RFC 3526. My output is a fairly large array of bytes. Is it safe to use the first 448 bits (56 bytes) of the output for a ...
3
votes
4answers
321 views
Breaking 224-bit Blowfish encryption
I have a bunch of encrypted files that I want to decrypt (duh). I found out they are encrypted with Blowfish using a 224-bit key after some research. I know what the first few bytes of the plaintext ...
3
votes
4answers
4k views
Comparison of DES, Triple DES, AES, blowfish encryption for data
Does anyone have pros and cons together for comparing these encryption algorithms ?
3
votes
5answers
386 views
Encrypting a string with Blowfish in ruby returns a shorter string than the same process in php
This is confusing me.
When I try and use the following inputs to encrypt a string with Blowfish:
key = "some key"
input = "input string"
I get the following results:
ruby: ["79af8c8ee9220bde"]
...
3
votes
1answer
849 views
Blowfish salt length for the Crypt() function?
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', ...
3
votes
2answers
697 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 ...
2
votes
2answers
34 views
Bcrypt is hasing or encryption? A bit of confusion
I have been reading about bcrypt (application perspective). Thinking of using it to store passwords on my site.
Out of some stuff that I read it suggests either ways:
e.g. 1: Bcrypt is a cross ...
2
votes
1answer
59 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
1answer
73 views
Authenticating password encrypted in PHP using Blowfish with Ruby
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, ...
2
votes
1answer
112 views
C++ Blowfish Hashing Implementation
A number of scripting languages (Python/PHP/etc...) include functionality (sometimes through extensions) that allows you to use Blowfish as a one way hash on passwords. I'm trying to find a similar ...
2
votes
1answer
74 views
can I get ProcessBytes to return an exact amount?
am using BouncyCastel to make a CfbBlockCipher so here is the codes.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Org.BouncyCastle.Crypto;
using ...
2
votes
1answer
100 views
Same algorithm, same string, same salt, different result?
I'm using the Blowfish algorithm for encrypting passwords in my application.
After reinstalling Ubuntu on the server, the output of this algorithm has changed - though I'm trying the same string and ...
2
votes
2answers
347 views
Decrypting a blowfish encrypted string in ruby only returns 1/2 the string
This is related to my question from yesterday (which got great results):
Encrypting a string with Blowfish in ruby returns a shorter string than the same process in php.
Now I have what I believe to ...
2
votes
2answers
72 views
Blowfish in the Merkle–Damgård construction?
Is there a library that uses Blowfish in the Merkle–Damgård construction, for the purpose of constructing a cryptographic hash? I'm not interested in password hashing, but a general purpose ...
2
votes
1answer
610 views
Which Blowfish algorithm is the most 'correct'?
I'm running Windows Server 2k8 (maybe that's half the problem?) Anyway, I'm getting different values out of different Blowfish modules in various languages. Is there one which can be relied upon as ...
2
votes
1answer
89 views
Need a reality check: Is my analysis of this VB6 Blowfish bug correct?
Recently I had cause to compare Blowfish algorithms. I was comparing outputs from DI Management's library and PHP's mcrypt. I could not get them to agree in any way.
This led me on an interesting ...
2
votes
1answer
795 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
2k views
Using Blowfish Encryption within .NET
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# ...
2
votes
2answers
3k views
C# Problem using blowfish NET: How to convert from Uint32[] to byte[]
In C#,I'm using Blowfish.NET 2.1.3's BlowfishECB.cs file(can be found here)
In C++,It's unknown,but it is similiar.
In C++,the Initialize(blowfish) procedure is the following:
void ...
1
vote
1answer
94 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
...
1
vote
3answers
162 views
Blowfish encryption in android
cipher = Cipher.getInstance("Blowfish");
This throws an exception java.security.NoSuchAlgorithmException: Cipher Blowfish implementation not found.
I checked both local_policy.jar and ...
1
vote
0answers
56 views
QCA blowfish decryption fails
I'm trying to use QCA to encrypt/decrypt files.
When i use this code to encrypt, everything works fine (or seems to, at least).
But when i try to decrypt, the process() method returns an empty ...
1
vote
1answer
68 views
Javascript implementation of Blowfish ECB Encryption
[Transferred from crypto.stackexchange.com]
I'm looking for a javascript library that supports ECB Blowfish encryption/decryption with a symmetric key. Do any exist?
I've seen some in a Google ...
1
vote
4answers
40 views
How to perform wildcard search thtough encrypted text?
We have a website with tons of users, and because of PCI compliance issues we have to store their names encrypted (we use blowfish).
Now we need to have a wildcard search feature through their names ...
1
vote
1answer
126 views
Why does my PHP Blowfish encryption produce such weird results?
After hearing that MD5 isn't safe for password storage (MySQL), I decided to use PHP's crypt() with Blowfish (tell me if you know any better algorithms). So I randomly generate a 32-character salt and ...
1
vote
3answers
288 views
creating encrypted passwords in openfire MySQL via PHP
Openfire stores encrypted passwords in a database using blowfish encryption.
http://svn.igniterealtime.org/svn/repos/openfire/trunk/src/java/org/jivesoftware/util/Blowfish.java is the java ...
1
vote
3answers
206 views
blowfish encryption in actionscript 3
I want to mask a string value that I have in my embed code. I thought I could encrypt it using Blowfish or something similar. I don't care that is not secure. Basically I don't want someone to copy ...
1
vote
2answers
236 views
Is there any way to use bcrypt “hashing” in PHP 5.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_BLOWFISH ...
1
vote
1answer
102 views
Error when building iPhone project with blowfish C library imported for password encryption
I downloaded blowfish reference source code here then when I try to use it, I well imported "blowfish.h" and setup target references for "blowfish.lib".
When I declare my key like :
BF_KEY *key;
...
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
242 views
Translating PHPMyAdmin MySQL connection configuration to JDBC
I have PHPMyAdmin connecting to a remote MySQL server, using those parameters:
$cfg['blowfish_secret'] = 'ba17c1ec07d65003';
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* ...
1
vote
2answers
446 views
How can I decrypt Blowfish ciphertext with a salted header?
I have some ciphertext that has been encrypted using Perl's Crypt::CBC module that I wish to decrypt elsewhere.
The ciphertext was generated using the 'simple' version of the Crypt::CBC constructor, ...
1
vote
1answer
305 views
Mimic CRYPT_BLOWFISH with MCRYPT_BLOWFISH
My question is how do I get the same result from mcrypt as I would get from crypt, with respect to blowfish?
I am wanting to use the phpass framework for password hashing and verifying. Which works ...
1
vote
1answer
104 views
What is the best library I can use for BlowFish/DH?
What is the best library I can use for BlowFish/DH, because I was using BouncyCastle but it looks like it does not do what I want, so I was wondering if there is another library I can use so it let me ...
1
vote
3answers
188 views
Is it possible to assign a javascript value to a php variable?
I have a (php) array of blowfish encrypted data posted from a form-submit. I have a blowfish algorithm in javascript.
var bf = new Blowfish('12345678901234567');
var ciphertext = bf.encrypt('test ...
1
vote
3answers
527 views
Decrypt Blowfish in Java (Generating a secret key in program)
My professor gave us a decryption assignment in which we were given a list of "encrypted" phrases and told to decrypt them. One of them is in blowfish. Me and one of my classmates have tried all the ...
1
vote
1answer
675 views
Encryption with BlowFish in Java
Following code works fine for me to encrypt a string with the BlowFish encryption.
// create a key generator based upon the Blowfish cipher
KeyGenerator keygenerator = ...
1
vote
1answer
72 views
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
1answer
258 views
How to implement Blowfish algorithm in J2ME?
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.swing.JOptionPane;
are these not included in J2ME?
Then How can I implement the ...