Well as usual with me, I've found glitches which need improving. :-) The above code had a big drawback: when you hit a control key, like pageup,arrowkeys,etc. it would grab 4 or 5 key signals, which would mess up the password. Filtering out the control keys was not easy. I had to use 2 subs, 1 to grab the first key signal, if it was (ord===27) then it was the start of a control sequence, and had to be filtered out by using a second sub, which just keeps reading and discarding input, until nothing is coming in.

Also, be aware that this routine relies on the almost universal setting where backspace = delete.

#!/usr/bin/perl use strict; use Term::ReadKey; my $pwd = mask_pwd(); print "\n$pwd\n"; sub mask_pwd{ ReadMode(3); my $password = ''; print "Enter Password\n"; while(1){ my $ord = getord(); if ($ord == 10){last} # "Enter" if ($ord == 127) { # ie "Backspace" chop($password); print chr(8),' ',chr(8); next; } if($ord == 27){clearstream();$ord="\0"} if($ord != "\0"){ $password .= chr($ord); print '*'; } } ReadMode(0); return $password; } sub getord{ ReadMode('cbreak'); my $char; if (defined ($char = ReadKey(0))){ # input was waiting and it was $char } ReadMode('normal'); # restore normal tty settings return ord($char); } sub clearstream{ while(1){ ReadMode('cbreak'); my $char; #passing ReadKey() an argument of -1 to indicate not to block: if (defined ($char = ReadKey(-1)) ) { #$char=''; # input was waiting and it was $char } else { # no input was waiting return; } ReadMode('normal'); # restore normal tty settings } return ; }

In reply to Re: masking password entry by zentara
in thread masking password entry by zentara

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.