Need help for hash generation button

Hello!

I need button with next functional:

  1. I copy to clipboard name of the site. Example: "site.com"
  2. Click some button in Dopus where previous clipboard contents used for next step
  3. Dopus show string dialog where ask me to enter some word. Example "test".
  4. Then run md5sum with option "+<entered_string>". Example "site.com+test" to generate some hash
  5. This hash copied to clipboard, and dopus may show this hash or show confirmation dialog

Whe I need this. This some password generation/reminder system. Most sites require unique password. Remember it all are very hard. Here is DOpus may help.

You create some secret word for you ("test" in my example). And when hashed "site name + your word" you get password for this site. Password looks like hash almost unbreakable and you don't store your password anywhere. All you need is sitename (from URL) and your secret word (easy to remember without paper).

Hope for help with creating this magic button :slight_smile: My attempts has no result :frowning:

As far as I know Opus can not use the text in the Windows clipboard to generate an MD5 hash. However you could use the free MD5 command line tool available at:

http://www.fourmilab.ch/md5/

to do this. I almost had an Opus button worked out that uses the above program to do what you want, but there seems to be a bug in the Opus {$clip} control code. I did submit a bug report on it, but for now you might want to explore the possibilities of the above program in a batch file script.