python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Is there a way to generate a HOTP with time limitation?
For example, I want to get a HOTP that can only be used in 10 minutes.
Not TOTP cause it's possible that when users get the code there are only 10 seconds left.
AkiraVoid
Votes: 0
Answers: 1
How can I get the password to return back to password request if an invalid password is entered in Java?
I am trying to get the password to return and re-ask for the password if an invalid password is entered. And if a password is invalid 3 consecutive times, the system should terminate.
Is there an issu...
Kivan Ilangakoon
Votes: 0
Answers: 2
Do I need to include -n option when encoding a password using base64?
I read somewhere that when encoding a password in base64, I should use echo -n to prevent the newline from being included in the encoded value. For example,
echo changeme | base64
Y2hhbmdlbWUK
echo -...
PatS
Votes: 0
Answers: 1
How can I check for special characters in password validation in Java?
I am trying to get the code to check for special characters entered, however, I am not getting any validation errors when special characters are not entered in the password. Is there a reason why spec...
Kivan Ilangakoon
Votes: 0
Answers: 2