0
votes
3answers
15 views
encrypting data using blowfish under flash.
how can i encrypt data in flash? is there a toolkit or class or something that can help me do that ?
2
votes
2answers
54 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
61 views
48-bit blowfish
Is there an implementation (Java/C++/Ruby) of a blowfish algorithm that supports 48-bit data blocks? I have an encryption problem where the input and output channels are exactly 48-bits. All …
3
votes
2answers
113 views
Blowfish objective-c implementation
Hello,
What objective-c implementation of Blowfish would you advice to use? (Or may be I just missed some standard implementations available?)
1
vote
1answer
175 views
Blowfish encryption sub-key generation
Okay, so I'm doing a little blowfish implementation in PHP as a programming exercise for myself, and to get to know that encryption method better. I arrived at a set of functions that work, in that I …
0
votes
0answers
137 views
Decrypt BlowfishEasy encrypted file in PHP
I am trying to figure out how to decrypt a file that is encrypted with BlowfishJ.BlowfishEasy. Anyone who has Java and PHP experience and would be willing to help would be great!
BlowfishEasy Class: …
0
votes
2answers
317 views
How can I convert a Blowfish encoded binary string to ASCII in Ruby?
I would like to encode some plain text using Ruby and the Crypt library. I would like to then transmit this encrypted text (along with some other data) as an ASCII hexadecimal string within an XML …
1
vote
2answers
113 views
Error decrypting file
Hi, i encrypt a file using ideas from tldp.org/LDP/LG/issue87/vinayak.html. I downloaded and compiled this source code for encrypting/decrypting a simple text file. Once compiled I do:
./blowfish …
1
vote
2answers
130 views
Why does Blowfish::PP’s encrypt only print five characters?
Good day!
I have a code here that uses the blowfish_PP algorithm from Crypt::Blowfish_PP to encrypt a password.
I've provided a sample "key" variable for a start (though
I will make a function later …
0
votes
3answers
177 views
MD5 to Blowfish encryption?
Can anyone give me an idea bout this.. I was assigned to decrypt passwords from our LDAP DB and then encrypt them using blowfish algo since we are going to use openfire system. Transfer of data from …
0
votes
3answers
233 views
How can I decrypt a file encrypted in Perl using Crypt::CBC (Blowfish) in C?
I have a small encryption tool in Perl which uses the Crypt::CBC and Blowfish to encrypt files.
I want to write the decryption algorithm in C or C++ ... Please somebody help me in doing this.
0
votes
1answer
75 views
Porting TurboPower Blowfish to .Net
I have an application that was originally written in Borland C++ and used a Blowfish algorithm implemented in the TurboPower LockBox component .
This application has now been ported to C#. …
0
votes
1answer
821 views
Encrypt/Decrypt ECB/PKS5/Blowfish between AS3Crypto & Javax.Crypto fails with padding error
I have a secret key that was sent to me as a file so I can encrypt some xml data using Blowfish. How do I access the key so that I can use it with AS3Crypto? I assume I need to Embed it using the …
1
vote
4answers
282 views
Adaptation problem with the Blowfish Encryption in C
I'm writing a program that implements the Boneh-Franklin Identity Based Encryption. For the actual encryption methods, I use Blowfish which I got from (https://voltar.org/). I'm trying to adapt the …
0
votes
1answer
237 views
C++ blowfish works with fewer letters,but C# blowfish doesn’t
Hello,
a C++ blowfish supports encrypting a block with less than < 8 letters,while .NET doesn't.Why?
-->C# NET Blowfish<--
-->C++ Blowfish<--
In both C++ and C# applications,I encrypt the …
