How to encrypt data input into fields?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Matthew Baur
    New Member
    • Nov 2010
    • 2

    How to encrypt data input into fields?

    I am using python PMw megawedgit EntryField

    [self.accountNam e = Pmw.EntryField( win2,labelpos=' w',label_text=' Username',valid ate=None)
    self.accountCom ment = Pmw.EntryField( win2,labelpos=' w',label_text=' UserComment',va lidate=None)
    self.primaryGID = Pmw.EntryField( win2,labelpos=' w',label_text=' Primary Group', entry_state='re adonly',value=' lsmgroup',valid ate=None)
    ]

    would like to create a password field that would show a "." for each character when the password is entered into the field.
  • dwblas
    Recognized Expert Contributor
    • May 2008
    • 626

    #2
    In a Tkinter entry widget it is the "show="*"" option. I think PMW uses something like "entry_show="*" " but am not sure.

    Comment

    Working...