search for: blowfish

Displaying 20 results from an estimated 522 matches for "blowfish".

2008 Jun 06
1
Need help with Decryption using blowfish CBC
Hello all, Hoping someone can help me out here. I''ve burned almost a week trying to figure out how to decrypt an image file that has been encrypted using Blowfish CBC. I found some code on the net and have modified as follows: require ''openssl'' require ''digest/sha1'' ivArr = [0x0D, 0x0E, 0x0A, 0x0D, 0x0F, 0x0A, 0x0C, 0x0E ] iv = ivArr.pack("cccccccc") bf = OpenSSL::Cipher::Cipher.n...
2009 Sep 19
3
Blowfish crypt in rails app
HI Im creating a rails app using blowfish encryption and decryption, in my app i have included a gem crypt for doing a encryption and im trying to decrypt the result using blowfish.js is that possible to do that encryption via ruby gem and decryption via blowfish.js, i download the blowfish js from the url: http://dren.ch/js/blowfish.js...
2014 Feb 04
1
BLF-CRYPT passwords
I?m using the Dovecot Enterprise Edition on Centos 6.5, but Blowfish password hashes don?t seem to work. What can I do to enable Blowfish hashes for passwords? Maybe I don?t have my installation configured properly? Note that I really want to use the existing Blowfish hashes in my MySQL database for Dovecot Authentication. The hashes are generated by PHP crypt()...
2010 Aug 05
1
[LLVMdev] possible miscompilation of openssl on x86-64
...run all tests successfully. On x86-64 using clang r110287 I get the error message below during "make test". Not sure if anyone has time to look into this but I'm probably not the right person to start debugging it... Thanks, John Regehr ../util/shlib_wrap.sh ./bftest testing blowfish in raw ecb mode testing blowfish in ecb mode testing blowfish set_key testing blowfish in cbc mode testing blowfish in cfb64 mode testing blowfish in ofb64 ../util/shlib_wrap.sh ./casttest ecb cast error encrypting for keysize 128 got :9B 8C 2F F3 49 DB 70 23 expected:23 8B 4F E5 84 7E 44 B2 ec...
2005 Mar 02
0
Ssh / sft /scp password problems, agent runs fine
...################################################ WITHOUT KEY fbeckman at zvadm6:/home/fbeckman $ ssh -vvv devil3 uname -a OpenSSH_3.9p1, OpenSSL 0.9.7e 25 Oct 2004 debug1: Reading configuration data /home/fbeckman/.ssh/config debug1: Reading configuration data /etc/ssh_config debug3: cipher ok: blowfish-cbc [blowfish-cbc,aes128-cbc,3des-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc] debug3: cipher ok: aes128-cbc [blowfish-cbc,aes128-cbc,3des-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc] debug3: cipher ok: 3des-cbc [blowfish-cbc,aes128-cbc,3des-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc] debug3...
2016 Jun 05
2
Blowfish hashed passwords
...d love to know why your ubuntu 14.04 system doesn't support sha512-crypt. I just tried SHA512-CRYPT and it is supported on Ubuntu 14.04. I think I was thinking about DBMail instead of Dovecot. I could really use support for BLF-CRYPT since my current password hashes generated by PHP are using Blowfish encryption. Maybe, Dovecot could just add support for BLF-CRYPT by using the open source implementation of Blowfish hashing found in https://github.com/php/php-src/tree/master/ext/standard <https://github.com/php/php-src/tree/master/ext/standard>. The implementation looks like a single funct...
2004 Oct 28
1
[Bug 946] scp slow file transfers, even with -1 -c blowfish
http://bugzilla.mindrot.org/show_bug.cgi?id=946 Summary: scp slow file transfers, even with -1 -c blowfish Product: Portable OpenSSH Version: 3.8.1p1 Platform: ix86 OS/Version: Cygwin on NT/2k Status: NEW Severity: major Priority: P2 Component: scp AssignedTo: openssh-bugs at mindrot.org ReportedBy: zippy at...
2016 Jun 03
3
Blowfish hashed passwords
...in latest 2.2 release > > MD5 MD5-CRYPT SHA SHA1 SHA256 SHA512 SMD5 SSHA SSHA256 SSHA512 PLAIN > CLEAR CLEARTEXT PLAIN-TRUNC CRAM-MD5 SCRAM-SHA-1 HMAC-MD5 DIGEST-MD5 > PLAIN-MD4 PLAIN-MD5 LDAP-MD5 LANMAN NTLM OTP SKEY RPA CRYPT SHA256-CRYPT > SHA512-CRYPT > > There is also blowfish support as BLF-CRYPT, but that requires that your > system supports it. CRYPT supports whatever your crypt() supports. > The reason I suggest building in fallback hash type support is that my install of Dovecot on Ubuntu 14.04 didn?t support SHA512-CRYPT or BLF-CRYPT. If Dovecot just incl...
2001 Feb 18
1
OpenSSH 2.3.0p1 protocol 2 problem with AIX
...ion: $ ssh -v -v -v ibmsp SSH Version OpenSSH_2.5.0p1, protocol versions 1.5/2.0. Compiled with SSL (0x0090581f). debug: Reading configuration data /home/psavola/.ssh/config debug: Reading configuration data /etc/ssh/ssh_config debug: cipher ok: rijndael128-cbc [rijndael128-cbc,aes128-cbc,arcfour,blowfish-cbc] debug: cipher ok: aes128-cbc [rijndael128-cbc,aes128-cbc,arcfour,blowfish-cbc] debug: cipher ok: arcfour [rijndael128-cbc,aes128-cbc,arcfour,blowfish-cbc] debug: cipher ok: blowfish-cbc [rijndael128-cbc,aes128-cbc,arcfour,blowfish-cbc] debug: ciphers ok: [rijndael128-cbc,aes128-cbc,arcfour,blo...
2007 Jul 20
2
[Bug 1341] New: Support multiple blowfish key lengths
http://bugzilla.mindrot.org/show_bug.cgi?id=1341 Summary: Support multiple blowfish key lengths Product: Portable OpenSSH Version: 4.6p1 Platform: Other OS/Version: Other Status: NEW Severity: enhancement Priority: P2 Component: Miscellaneous AssignedTo: bitbucket at mindrot.org Report...
2007 Dec 05
0
Encryption using blowfish
I''m working on encrypting some data using blowfish. The previous implementation was done using php as follows. $key = ''some key''; $data = ''data to be encrypted'' $iv = pack(''H*'', substr($key, 0, 16)); $literak_key =", $key.$key.$key.substr($key,16),"; $cipher = mcrypt_module_open(MCR...
2016 Jul 21
2
Openssh use enumeration
I thought this was already addressed with the internal blowfish hash of "$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK" to where all passwords were checked against this to prevent timing analysis for user enumeration. On 20 July 2016 at 19:45, Darren Tucker <dtucker at zip.com.au> wrote: > On Tue, Jul 19, 2016 at 11:10 PM, C0...
2002 May 18
1
OpenSSH 3.2.2p1 sshd: fatal: xfree: NULL pointer given as argument
...normally seen when using telnet to sshd (e.g. the above error must be later in the protocol sequence than raw telnet would engage). Debug output (-ddd -e): ============================================================================= debug3: cipher ok: aes256-cbc [aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,3des-cbc] debug3: cipher ok: aes192-cbc [aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,3des-cbc] debug3: cipher ok: aes128-cbc [aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,3des-cbc] debug3: cipher ok: blowfish-cbc [aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,3des-cbc] debug3: cipher ok: 3de...
2016 Jun 06
2
Blowfish hashed passwords
>> Maybe, Dovecot could just add support for BLF-CRYPT by using the open source implementation of Blowfish hashing found in https://github.com/php/php-src/tree/master/ext/standard <https://github.com/php/php-src/tree/master/ext/standard>. The implementation looks like a single function to generate the hash. I?m not much of a programmer, but it would seem to me that these .c/.h files could be added...
2000 Oct 14
1
Key exchange/selection badly broken in SNAP1014?
Hello all, It seems the overhaul on key exchange/selection broke it badly. I haven't managed to use any other encryption method than 3des and blowfish when connecting to SNAP -> SNAP. SNAP -> 2.2.0p1 will use arcfour etc. quite cleanly. How SNAP -> SNAP looks like: --- debug: Local version string SSH-2.0-OpenSSH_2.2.0p2 debug: send KEXINIT debug: done debug: wait KEXINIT debug: got kexinit: diffie-hellman-group-exchange-sha1,diffie-he...
2001 Sep 02
0
ssh failure at password query
...to what needs attention and how it should be fixed? thank you for your time and assistance. frank smith frank.smith at unilever.com trace from sshd -d -d -d -e -D ------------------------------------------------------------------------ debug1: Seeding random number generator debug3: cipher ok: blowfish-cbc [blowfish-cbc,cast128-cbc,arcfour] debug3: cipher ok: cast128-cbc [blowfish-cbc,cast128-cbc,arcfour] debug3: cipher ok: arcfour [blowfish-cbc,cast128-cbc,arcfour] debug3: ciphers ok: [blowfish-cbc,cast128-cbc,arcfour] debug1: sshd version OpenSSH_2.9p2 Could not load host key: /local/etc/ssh_ho...
2018 Jul 06
1
support for Blowfish $2y$10$
Hello, does dovecot support bcrypt $2y$ version? (BLF-CRYPT - Blowfish crypt) doveadm pw -s BLF-CRYPT generates a {BLF-CRYPT}$2a$05$....... password. Does this mean that dovecote will not authenticate against a $2y$10$....... password? Thanks in advance, -Graham-
2000 Jan 27
0
[CVS] humbolt:/tinc/cipher/blowfish Makefile.am Makefile.in
Update of /home/CVS/tinc/cipher/blowfish In directory humbolt:/tmp/cvs-serv2778/cipher/blowfish Modified Files: Makefile.am Makefile.in Log Message: Include system.h and cipher/hmac/hmac.h in the distribution; the blowfish cipher is now in PKGDIR/libcipher_blowfish.so.0. - Tinc: Discussion list about the tinc VPN daemon Archi...
2005 Jan 07
0
Missing functionality in Blowfish for crypt(3)
The blowfish crypt(3) mechanism supports the use of a "cost value" for password encryption. The cost value is encoded into the encrypted password that is stored in master.passwd. On OpenBSD, this cost value can be set in login.conf. FreeBSD does not currently support the cost value. The cost value...
2016 Jun 06
2
Blowfish hashed passwords
...ort BLF-CRYPT and are well tested and secure? > On Jun 5, 2016, at 8:54 PM, Edgar Pettijohn <edgar at pettijohn-web.com> wrote: > > On 16-06-05 20:36:35, KT Walrus wrote: >>>> Maybe, Dovecot could just add support for BLF-CRYPT by using the open source implementation of Blowfish hashing found in https://github.com/php/php-src/tree/master/ext/standard <https://github.com/php/php-src/tree/master/ext/standard>. The implementation looks like a single function to generate the hash. I???m not much of a programmer, but it would seem to me that these .c/.h files could be add...