Does anyone know of password strength meter component for delphi Win32?
Important :
must be for a Win32 Form, not for Web.
something like that (but for Win32)

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is fairly simple to build your own…and you don’t have to use much more than a TPanel, TEdit two TLabels and a TShape.
A Tshape component aligned left inside a panel and colored works great as the simple progress bar, just change the width % of the TShape to match the % strength. Adjust color and such to match. A good resource then for the % strength is to use one of the many examples found on the web. As an addition to this table, if you have a spell check component available, try to spellcheck the result…if it passes then it should get a much lower score (in my opinion -50 from the result).
In the onChange for the edit, recompute the password strength and adjust the other controls appropriately.