Hi I need to generate a SHA over a 5 Gig file
Do you know of a non string based Delphi library that can do this ?
|
2
|
|
|
|
|
|
You should use DCPcrypt v2 and read your file buffered and feed the SHA hasher with the buffer until you've read the complete 5GB file. If you want to know how to read a large file buffered, see my answer about a file copy using custom buffering. so in concept (no real delphi code!):
|
||
|
|
|
There is a Delphi interface for OpenSSL, isn't there? That should provide you with better performances. |
||
|
|
|
|
I would recommend Wolfgang Ehrhardt's CRC/Hash. It's fast and "can be compiled with most current Pascal (TP 5/5.5/6, BP 7, VP 2.1, FPC 1.0/2.0/2.2) and Delphi versions (tested with V1 up to V7/9/10)". I've used it with D11/D12 too. |
||
|
|
|
If I remember correctly, Indy comes with several a stream based hash methods. |
||
|
|
|
|
Here is another Hash/Cipher library supporting Delphi 5 - 2009, the "Delphi Encryption Compendium": http://www.michael-puff.de/Developer/Delphi/Importe/Hagen_Reddmann/ |
||
|
|