Search found 21 matches: blowfish

Return to advanced search

Re: How to work with Blowfish encryption

Some test code illustrating how to work with Blowfish can be downloaded from...

http://www.leadersoft.com/files/BfTest.zip
by Roger Seiler
Fri Jan 10, 2014 9:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to work with Blowfish encryption
Replies: 4
Views: 1750

Re: How to work with Blowfish encryption

An additional point on Blowfish encryption usage: 7. When encrypting/decrypting multiple records at once via Blowfish in a looping process like DO WHILE, you must first delete any controlling compound index, like a compound CDX index, ...
by Roger Seiler
Fri Jan 10, 2014 6:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to work with Blowfish encryption
Replies: 4
Views: 1750

Re: Any other encryption system besides Blowfish?

I got Blowfish to work fine. See separate thread, "How to work with Blowfish".
by Roger Seiler
Tue Jan 07, 2014 3:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Any other encryption system besides Blowfish?
Replies: 6
Views: 2037

Re: How to work with Blowfish encryption

Reviewing some of the comments made in other threads about encryption, I offer these observations: 1. Blowfish is an encryption system that is approved in the USA for health-related applications requiring HIPAA compliance. Some of the other encryption systems mentioned here ...
by Roger Seiler
Mon Jan 06, 2014 10:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to work with Blowfish encryption
Replies: 4
Views: 1750

Re: How to work with Blowfish encryption

The earlier problem I posted on another thread about experiencing excessive processing time for encryption/decryption with Blowfish was caused by my error in handling the encryption of memos. After eliminating my error (I had incorrectly assumed that each memo field had to have a fixed ...
by Roger Seiler
Mon Jan 06, 2014 9:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to work with Blowfish encryption
Replies: 4
Views: 1750

How to work with Blowfish encryption

After some testing, it seems the only special "tricks" needed for working with Blowfish are that A) all fields must be of char data type; B) all fixed-length fields to be encrypted in a DBF must be 8 bytes long or some multiple of 8 bytes in length (16, 24, ...
by Roger Seiler
Mon Jan 06, 2014 9:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to work with Blowfish encryption
Replies: 4
Views: 1750

Re: Any other encryption system besides Blowfish?

Reinaldo,

Thanks for the excellent info. I'll discuss it will my customer. Hopefully, they'll increase my project's budget to allow using ADS with all of its advantages.

All the best,

- Roger
by Roger Seiler
Mon Dec 09, 2013 7:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Any other encryption system besides Blowfish?
Replies: 6
Views: 2037

Re: Any other encryption system besides Blowfish?

I see we are running two different threads on the same subject and I have already shown that ADS is FIPS compliant, however, here is more information on ADS encryption: Advantage provides the capability to encrypt tables and associated data. Data encryption is just one part of the process of creatin...
by reinaldocrespo
Mon Dec 09, 2013 6:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Any other encryption system besides Blowfish?
Replies: 6
Views: 2037

Re: Any other encryption system besides Blowfish?

... systems that the govt. has found acceptable under HIPAA. The approved list of encryption systems includes DES (though it is being deprecated), Blowfish, RSA, RC5, PGP and IDEA. Other proprietary encryption systems are generally not allowed, unless certified by an independent encryption review ...
by Roger Seiler
Mon Dec 09, 2013 4:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Any other encryption system besides Blowfish?
Replies: 6
Views: 2037

Re: encrypting dbf files

The advantages of the Blowfish encryption system (available in Harbour) are: 1. U.S. government regulations covering privacy and encryption rules (like HIPAA - the Health Insurance Portability and Accountability Act) have found Blowfish ...
by Roger Seiler
Mon Dec 09, 2013 3:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: encrypting dbf files
Replies: 67
Views: 15469

Re: Any other encryption system besides Blowfish?

Roger

I posted this code some time ago which has served me well..

Rick Lipkin

viewtopic.php?f=3&t=27189&p=152637#p152637
by Rick Lipkin
Sun Dec 08, 2013 4:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Any other encryption system besides Blowfish?
Replies: 6
Views: 2037

Re: Any other encryption system besides Blowfish?

Roger; ADS remote as well as the free local server RDDs allow you to encrypt a .dbf. Here is some text from the help file: Advantage provides security for your data in a number of important ways. Some of these are associated with how Advantage transmits data across the network, and others are associ...
by reinaldocrespo
Sat Dec 07, 2013 9:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Any other encryption system besides Blowfish?
Replies: 6
Views: 2037

Any other encryption system besides Blowfish?

Since I can't get a solution to the hugely excessive length of the Blowfish key (over 4000 bytes) that makes encryption/decryption painfully slow, can anyone recommend another widely recognized encryption system that works with FWH?
by Roger Seiler
Fri Dec 06, 2013 11:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Any other encryption system besides Blowfish?
Replies: 6
Views: 2037

Re: Blowfish encryption issue - key too long

I sent a private email to Przemek about this. He is the expert on Blowfish encryption for Harbour, and If he offers a solution, I'll post it here.
by Roger Seiler
Fri Dec 06, 2013 12:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Blowfish encryption issue - key too long
Replies: 2
Views: 664

Re: Blowfish encryption issue - key too long

Here is some test code that shows the problem: Function BlowfishTest()    local cBfKey := hb_blowfishKey( "fivewin" )    MsgInfo(cBfKey,"cBfKey")    Msginfo(LEN(cBfKey),"LEN(cBfKey)")    // ...
by Roger Seiler
Thu Dec 05, 2013 6:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Blowfish encryption issue - key too long
Replies: 2
Views: 664
Next

Return to advanced search