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.

learn more… | top users | synonyms

0
votes
1answer
18 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 ...
15
votes
2answers
288 views

How to hash long passwords (>72 characters) with blowfish

The last week I read a lot articles about password hashing and Blowfish seems to be (one of) the best hashing algorithm right now - but that's not the topic of this question! The 72 character limit ...
0
votes
1answer
28 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
18 views

PHP Blowfish File Missing?

I am testing Blowfish on the RHEL Server. But having followng error: Failed opening required 'Blowfish/DefaultKey.php' (include_path='.:/usr/share/pear:/usr/share/php') in /var/www/html/.......... ...
-4
votes
0answers
9 views

PolarSSL Blowfish use

I need help in use of Polarssl/Blowfish encryption in C. I only want to decrypt an encrypted text. Encryption isnt needed. I can set key but the decryption is a little hard for me. help plz
-2
votes
2answers
37 views

Blowfish C example for char*

I need help in Kocher's blowfish algorythm to implement in C. Its url is(http://www.schneier.com/code/bfsh-koc.zip). I could do the basics (initialize), but decryption isn't well. I know I should work ...
0
votes
0answers
20 views

Login with Bcrypt(4);

I'm trying to create a secure login system to my website, here's what I've got.. And the errors I receive. <?php try { $dbh = new PDO("mysql:host=localhost;dbname=****", "****", "****"); } ...
0
votes
1answer
29 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 ...
0
votes
0answers
35 views

Using Blowfish over different Endianness

I am writing an FTP program that requires Blowfish encryption between a big endian computer and a little endian computer. Here is the code I am using to do the encryption. As you can see, it takes ...
8
votes
1answer
171 views

php crypt for password hashing. Blowfish produces weird output

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, ...
0
votes
3answers
102 views

Encryption and Decryption using Blowfish Error - Input length must be multiple of 8 when decrypting with padded cipher

I am able to encrypt data however when decrypting it i am getting the following error: Error HTTP Status 500 - Request processing failed; nested exception is javax.crypto.IllegalBlockSizeException: ...
4
votes
1answer
58 views

Why CRYPT_BLOWFISH in PHP is considered better, when it produces shorter hashes than SHA [duplicate]

Why CRYPT_BLOWFISH in PHP is considered better for password hashing, when it produces shorter hashes than CRYPT_SHA-256/512? Isn't it more possible to find another word that computes the same BLOWFISH ...
0
votes
1answer
27 views

Python, cast Integer to bytes.

i am newbie in python, and cannot do some easy stuf. I have a code from java raw[j] = (byte) (chksum & 0xff) raw[j + 1] = (byte) (chksum >> 0x08 & 0xff) raw[j + 2] = (byte) (chksum ...
0
votes
1answer
85 views

PHP encryption / decryption adding padded characters

I'm trying to create a simple Encryption class but the resulting string is being padded with non-ascii characters. I've tried rtrim(), converting to utf8, etc. as mentioned in some other answers. What ...
0
votes
5answers
140 views

Decrypting in Java with Blowfish

Hullo, I am encrypting and decrypting in Java with Blowfish. The encryption works fine, but the decryption fails. Here is my Java code for decrypting : String encryptedString = … ; String ...
0
votes
2answers
41 views

BLOWFISH: Restore key from plainttext and hash?

Is it possible to restore the key from blowfish encrypted ciphertext and plaintext pairs? I have several strings both encrypted and plain. But I can't remember key. example of encrypted string ...
1
vote
2answers
91 views

Encrypt information on Java and Decrypt it on Objective-C/C++/C

I'm trying to encrypt a string on Java and send it to an iOS device, so far I'm able to encrypt easily the string using this functions but the hard part is on iOS. On iOS I've been experimenting with ...
0
votes
1answer
98 views

Blowfish php in C?

Some people can register themselves on my website. For the password, I used this : $key = "thisisasuperkey"; $key_crypted = md5($key); $pass = "thisisasuperpassword"; $pass_crypted = crypt($pass, ...
-1
votes
1answer
171 views

BlowFish File ENcryption java.security.InvalidKeyException(Java Eclipse)

I'm trying to encrypt and then decrypt back a file in Java. I'm using Eclipse IDE. The program seems to work fine except that the timer is not working as expected. I'm using two timers to calculate ...
0
votes
2answers
50 views

The method method_name(FileInputStream, FileOutputStream) is undefined for the type Class_name

A method I've written seems unreachable. I'm pasting the method below: public void decryt_data(InputStream in, OutputStream out) throws InvalidKeyException, IOException { // ...
0
votes
2answers
208 views

Site login with PHP MySQL Blowfish

I am having a serious issue with trying to validate my password when logging into my site. I am using php to create a blowfish encrypted password with salt using the code below. <?php function ...
1
vote
2answers
102 views

How to handle over non-ANSI characters to Crypt::Blowfish in Perl?

How to handle over non-ANSI characters to Crypt::Blowfish in Perl? The following script was written in charset UTF-8 and fails only on § or ö. #!/usr/bin/env perl use strict; use warnings FATAL ...
0
votes
2answers
148 views

Creating a encrypted Password with BLOWFISH with byte[24] length

I need to create a encrypted password for a server. This server uses Blowfish encryption to do the encryption. Now here are the info I have: KEY: "12345678abcdefgmypassword" Block size: 8 bytes - 64 ...
0
votes
1answer
311 views

PHP storing password with blowfish & salt & pepper

I want to store secure user passwords in a MySQL database with PHP. How can I make it better? My Class: private static $algo = '$2a'; private static $cost = '$10'; private static $pepper = ...
2
votes
2answers
122 views

Using blowfish in PHP for storing passwords

This whole cryptology thing is a lot to swallow, but it's really interesting and I've been reading about it lately. My question is about using blowfish to hash your passwords for storage. I know a ...
0
votes
0answers
51 views

Enable PHP CRYPT_BLOWFISH hash in Ubuntu

Can anyone tell me how can I enable php CRYPT_BLOWFISH hash in Ubuntu? My php version is 5.4.6 and Ubuntu 12.1. This is what i tried so far <?php class ChecksShell extends AppShell { private ...
1
vote
3answers
229 views

Password hashing: Keccak or not

The winner of SHA-3 hashing algorithm contest has been chosen. The winner's algorithm is Keccak. I use Blowfish and really like it, but Keccak is said to be better. Is it worth to use it for storing ...
0
votes
1answer
95 views

Blowfish encryption extremely slow on mobile for 3 mb file

I was rather surprised at how incredibly slow the encryption process is on Android using the Blowfish encryption from Bouncy Castle. A 3 mb file took over 3 minutes. Is there some other algorithm that ...
-1
votes
1answer
39 views

BlowFish Encryption returning false in PHP

Using Tuts Plus Hashing Tutorial it is constantly returning false when checking the hash value. The password has definitely not been entered incorrectly '111111'. I've done an IF statement to echo ...
0
votes
2answers
281 views

Decrypting Blowfish/CBC in Java

I have Perl code that decrypts a String and I want to do the same in Java. This is the Perl code: my $c = Crypt::CBC->new( -key => $keyString, -cipher => 'Blowfish', -header => ...
3
votes
2answers
156 views

String encryption in RubyMotion

I'm trying to encrypt strings in RubyMotion - ideally AES but weaker/older cyphers such as Blowfish should do just fine. So far I have failed at compiling a couple of pods: RNCrypto and CommonCrypto. ...
2
votes
3answers
316 views

Issues with BlowFish Encryption/Decryption (JBoss Encryption)

Here is a problem I am facing with BlowFish encryption/Decryption. The below code is used for testing BlowFish Encryption/Decryption // Code below omits comments for Brevity import ...
4
votes
2answers
307 views

PHP crypt() Blowfish Function Not Working

This is my first time using the crypt() function in PHP, and I can't figure out why it isn't working. My code is based on this article: ...
-3
votes
1answer
47 views

When storing password hashes should they be kept in a file or database? [closed]

In a website that requires users to log on where are their password hashes stored? I'm thinking they could be stored in a text file or database. Also I plan on using Blowfish to produce the hash that ...
3
votes
3answers
192 views

Exactly how do I use blowfish in PHP? [duplicate]

Possible Duplicate: Best way to use PHP to encrypt and decrypt passwords? I'm new here so forgive me if I don't make this perfect. I've been doing a lot with PHP recently and want to make ...
0
votes
0answers
115 views

Bug in Blowfish decryption, please help me to spot the error

I have an assigment to do for school. The task is to implement the Blowfish encryption algorithm in C#. Encryption works well, but decryption fails and produces "random" output. Maybe some more ...
0
votes
0answers
70 views

Making Decoder/Encoder using manual algorithm hidden in Pe

I have an exe made in delphi - it decrypts and encrypts text strings. The problem is that the delphi encoding of some types is different of c++ or other languages, so it makes delphi encoding manual. ...
0
votes
2answers
325 views

How to automatically generate salt for crypt method with blowfish

I have just started learning PHP and I want to create a website with a login for my final year university project. I've read that blowfish is the best method for hashing in a number of places like ...
0
votes
2answers
310 views

Blowfish encryption with c++ code in cocoa project

I would like to encrypt a text with Bruce Schneier's class that was converted to c++ code by Jim Conger After the encryption I would like to decrypt the encrypted text. To try this out, I am using ...
3
votes
1answer
570 views

How to implement Blowfish algorithm in iOS

What is the best way to implement BlowFish ECB encryption in iOS??? I have been googling a lot and found the library here. But there are no documentation of this library. Not sure how to use it.
1
vote
1answer
196 views

Blowfish encryption in php

I'm writing an encryption to my application and website, but I don't know how to correctly encrypt the string in php. Decryption is already done by this code: function decrypt_blowfish($data,$key){ ...
0
votes
2answers
112 views

Blowfish Cipher Behavior doesn't work in Cakephp 2+

The Cipher Behavior on The Bakery doesn't work after updating to Cakephp 2+. Receiving the error Fatal error: Call to undefined function getmicrotime() anytime the behavior is triggered.
0
votes
1answer
373 views

Blowfish encryption on C# and PHP yields different results

I'm trying to do a Blowfish encryption, but results in decryption an C#-encrypted code are not the same. I used this library in C#: https://defuse.ca/source/blowfish.cs and this self-written code to ...
2
votes
1answer
176 views

Cannot compare BCRYPT passwords

I am following the guide in this website http://www.gregboggs.com/php-blowfish-random-salted-passwords/ but for some reason when checking if password are the same it fails. The html is simple, 2 ...
0
votes
0answers
99 views

How to encode json data returned from a select query with 3DES Blowfish

I have that code for now: main Php part $mysql_result = database_exec("select ID, NAME from TABLE1 order by ID"); ...
2
votes
1answer
103 views

2y-blowfish hash keys in Python for shadow

As I found out, 2a shadow hash keys are deprecated because 2a has implementation flaws. It's been corrected in 2011 and now 2y-hashes are used widely on Linux systems. I tried to find a Python ...
1
vote
3answers
219 views

Why to use blowfish for passwords?

I'm a little confused about password-safe-keeping. Let's say I've got database with user-account table. And this is the place where i keep passwords. At this time i'm using salted sha1. I read ...
0
votes
1answer
103 views

How exactly to implement Blowfish in php

I've searched around and I can't find a good resource that walks through the entirety of implementing Blowfish. I am using 5.3.8 so I know I can use the crypt() function, and that I need to pass it ...
0
votes
2answers
252 views

Matching BlowfishJ Java implementation to dren blowfish javascript implementation; encryption values after 8-bytes are different

I'm having some issues with correlating the BlowsfishJ Java implementation (BlowfishJ Javadoc) to the dren Blowfish JavaScript implementation (dren Blowfish page). On the Java side, I'm using ...
1
vote
1answer
242 views

BlowFish decrypt - nCFB mode

I have some issues regarding BlowFish encryption. I'm developing a portlet in Java deployed under weblogic. I receive from an internet usb device a string encrypted with BlowFish - nCFB mode and i ...

1 2 3 4 5