Lines Matching refs:password
26 marker task-check-password.4th
30 vocabulary password-processing
31 only forth also password-processing definitions
36 255 constant readmax \ Maximum number of characters for the password
105 \ We are not going to echo the password to the screen (for
107 \ password, otherwise augment the key to a string.
131 only forth definitions also password-processing
133 : check-password ( -- )
136 \ password has been set (preventing even boot from proceeding)
143 3000 ms ." loader: incorrect password" 10 emit
157 \ Exit if a password was not set
158 s" password" getenv -1 = if exit else drop then
168 s" password" getenv dup readmax > if drop readmax then
171 2dup readval readlen @ compare 0= if \ Correct password?
174 3000 ms ." loader: incorrect password" 10 emit