One time passwords are designed as single use passwords which expire after use. They are often more secure than single factor authentication methods such as username-password (something the user knows) due to their single use which makes replay attacks impossible
0
votes
0answers
22 views
How to guarantee counter synchronisation between client and server for counter in hmac-based one time password implementation?
We are trying to implement a hmac-based one time password protocol for use authenticating users over our api.
The idea is to encrypt a unique identifier for the user (uid) against a private key and ...
1
vote
1answer
386 views
One-Time-Password in C# expires after a certain period?
I'm working on a log in page for a website now in C#.net and have encountered an issue, and was hoping you guys could help me out.
This is the case :
The user comes over to the log in screen, then ...
-1
votes
1answer
116 views
two factor authentication for internet banking [closed]
everyone.
i would like to ask what is the best alternative to one time passwords in TFA? What is wrong with normal HTTPS, SSL connection in internet banking? I have seen lots of banks with good ...
0
votes
0answers
219 views
PAM - OTPW - SSH on ARM-Linux
I successfully crosscompiled openssh, openSSL, PAM and the OTPW PAM library for arm linux, but apparently I am failing while setting up the config files.
Versions I'm using: OpenSSH: 6.0p1, OpenSSL: ...
0
votes
0answers
175 views
How to get the correct timestamp for generating Time-based One Time Passwords
I'm creating a Time-based One Time Password (TOTP) system with the following components:
A client (Android) creates a token.
A server (PHP) validate that token.
The system is working fine, but i ...
9
votes
2answers
707 views
Authorizing a computer to access a web application
I have a web application, and am tasked with adding secure sign-on to bolster security, akin to what Google has added to Google accounts.
Use Case
Essentially, when a user logs in, we want to ...
1
vote
2answers
186 views
can you use one time password to encrypt communication between mobile and server?
If SSL is not acceptable for my app to communicate with the client, how should I encrypt the traffic? I need something fast (so public key algorithms are out of question).
I was thinking about One ...
2
votes
3answers
269 views
Calling ssh with otp from a script
My company uses a OTP over ssh (One Time Password) to access our production machines. The interaction might look something like this:
$ ssh prod
otp-md5 942 st9621 extResponse:
At this point I ...
0
votes
0answers
99 views
OTP Local Protocol/Algorithm
Is there such thing as an encryption algorithm/protocol that uses one time passwords? Keep in mind I don't mean an authentication protocol but an actual encryption algorithm, i.e., if you have ...
0
votes
1answer
358 views
Web service to connecting with an OTP (One Time Password)
As stated in the title of the post I have a project which consists of designing a web service that will allow users to connect with an OTP. I really searched the internet and I found that there is a ...
2
votes
2answers
1k views
one-time-password algorithm (both matematical, time based, and action based)
I am trying to develop a website and a corresponding helper program (installed on the user computer). The website and the program will communicate with each other (AJAX mostly), but it will be a large ...
30
votes
1answer
7k views
Google Authenticator implementation in Python
I am trying to use one-time passwords that can be generated using Google Authenticator application.
What Google Authenticator does
Basically, Google Authenticator implements two types of passwords:
...
0
votes
1answer
525 views
Java byte array manipulation
I am trying to select the lower 4 bits of the last byte in a byte array. This is how I have previously done it in PHP but I am new to Java.
$lower4bit = substr($bytes[19], -1);
//Convert the hex to ...
0
votes
1answer
398 views
J2EE Spring security One Time Password
I must implement a One Time Password. For single petitions and although there are loads of resources of information in internet I still having doubts.
It is possible to make it survive system reboot ...
0
votes
2answers
456 views
Lockout policy and one-time passwords
I have a one time password system implemented for my website using RFC 4226. This password is sent via SMS to a mobile device. The user can only receive the password on their mobile device, and the ...
5
votes
3answers
1k views
Perfectly random one-time pad for encryption
I need to create a one-time pad to encrypt some data (a few KBs in size). How should I go about generating this one-time pad to avoid all of the pseudo-random problems associated with basic random ...
2
votes
3answers
3k views
HMAC-based one time password in C# (RFC 4226 - HOTP)
I am attempting to wrap my brain around generating a 6 digit/character non case sensitive expiring one-time password.
My source is http://tools.ietf.org/html/rfc4226#section-5
First the definition ...
2
votes
1answer
1k views
How can you generate OTP with system.security.cryptography that can be authenticated on client?
Anyone know where I could find sample code for this with system.security.cryptography namespace -- or instructions followable by a developer?
The purpose is to add two-factor authentication to an ...
1
vote
1answer
276 views
What else do I need to know about implementing a one-time-password system?
I've been tasked with creating a One Time Password (OTP) system which will eventually be used to create OTP generators on mobile devices.
We're looking at using HOTP (rfc 4226) using a counter, but ...
0
votes
2answers
772 views
What one-time-password devices are compatible with mod_authn_otp?
mod_authn_otp is an Apache web server module for two-factor authentication using one-time passwords (OTP) generated via the HOTP/OATH algorithm defined in RFC 4226. The developer's has listed only ...
3
votes
1answer
464 views
OTP S/KEY One Time password - Folding MD5 Digest output
Im trying to create a one time password generator for a phone. In the RFC2289 it specifies that i must fold the output of the MD5, i'm using bouncy castle MD5 and i cant work out how to fold the byte ...
1
vote
1answer
488 views
OTP or S/KEY - Conversion of Hex string into 6 readable words
As seen in RFC2289 (S/KEY), there is a list of words that must be used when converting the hexadecimal string into a readable format.
How would i go about doing so?
The RFC mentions:
The ...
2
votes
1answer
416 views
OTP S/KEY - How are Seeds generated, are they random each time?
I'm looking at developing a One-time Password authentication system (j2me for phone, php for server side)
I'm trying to get my head around the process, here is what i understand
user > inputs ...
2
votes
2answers
2k views
Java ME MD5 string using bouncy castle - cannot hash multiple times
I've noticed that a lot of my Google searches took me here so i thought perhaps i could borrow your apt minds :)
I'm working on a One Time Password generator for a mobile device (as well as website ...
2
votes
2answers
529 views
Implementing parts of rfc4226 (HOTP) in mysql
Like the title says, I'm trying to implement the programmatic parts of RFC4226 "HOTP: An HMAC-Based One-Time Password Algorithm" in SQL. I think I've got a version that works (in that for a small test ...
2
votes
5answers
2k views
Temp file that exists only in RAM?
I'm trying to write an encrpytion using the OTP method. In keeping with the security theories I need the plain text documents to be stored only in memory and never ever written to a physical drive. ...
0
votes
5answers
2k views
How do I set up one time password authentication?
I have a home network which I access remotely quite a bit. But I'm worried about security. While I do have strong passwords, I'm worried that someone will acquire my password and use it to gain ...