Simple Password Strength Checker with PWned Online Check (1 Viewer)

There seems to be some misunderstanding here regarding my VBA.Cryptography

First, Microsoft ActiveX Data Objects 6.1 Library is not referenced anywhere. The library uses native Windows API calls only. Although you can do many things in VBA, native calls will always be way faster.
Gustav, I apologize for the confusion about your module requiring a reference to Microsoft ActiveX Object Library. It is only required by my login module.

I updated the code in GitHub to remove any confusion with anyone looking at my version. I also added your notes about random numbers.
 
Gustav, I apologize for the confusion about your module requiring a reference to Microsoft ActiveX Object Library. It is only required by my login module.

I updated the code in GitHub to remove any confusion with anyone looking at my version. I also added your notes about random numbers.
Oh, that explains. No problem, thank you for the clarification.
 
Another observation: CBC mode is being used without authentication?
CBC & no MAC is venerable to padding oracle attacks, cyphertext manipulation and silent corruption.
Those are some valid points, Jason. Thank you.
Major bump is that implementing these will break backward compatibility; a V2 may be needed.
 

Users who are viewing this thread

Back
Top Bottom