Tagged Questions
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
4
votes
1answer
205 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:
...
4
votes
3answers
405 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 ...
3
votes
1answer
318 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 ...
2
votes
2answers
110 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 ...
2
votes
1answer
222 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
1k 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
361 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 ...
1
vote
3answers
1k 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 ...
1
vote
1answer
153 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 ...
1
vote
1answer
339 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 ...
1
vote
5answers
1k 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
0answers
26 views
Mobile-OTP usage with PHP
I want to implement Mobile-OTP on my site but I don't quite understand how should I do that.
First, the initialization.
The initialization of a device should always be done by the
...
0
votes
1answer
65 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 ...
0
votes
1answer
122 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
0answers
64 views
X.509 or Password auth with optional OTP two-factor in Django?
Slightly complex question: I have a Django website that I would like users to be able to log in to using EITHER:
X.509 Client Certificates (if available, preferred)
Username/Password Combination
...
0
votes
0answers
28 views
Quick and easy way of sending one time links
I once found a very quick and easy way to send one time links, allowing you to send say a password unencrypted, and only the first person who opens the link will be able to see the resource. ...
0
votes
1answer
159 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
227 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 ...
0
votes
1answer
400 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 ...
0
votes
2answers
405 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 ...
0
votes
5answers
777 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 ...