Buenos días . Se que hace tiempo que se paralizo este tema . Pero necesito ayuda .
Mi programa aun trabaja en Visual 6 y necesito generar código hash de archivos .
He probado el código que ha publicado "ActiveSheet" y me funciona perfectamente ,excepto con los pdf que contienen logotipos,como una factura .
Alquien me puede ayudar ?
Btw, here is an alternative (faster) MD5 hash implementation in VB:
https://gist.github.com/wqweto/7606ceea1c6c6a2e37c7a6fddf63a014You can use
CryptoMd5Text and
CryptoMd5ByteArray functions with buffered input or
CryptoMd5Init,
CryptoMd5Update and
CryptoMd5Finalize procedures for a stream based interface (when the size of input/file is too big to fit in memory).
cheers,
</wqw>