Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
819 views

How can one make a web-site accessible only when someone has a dongle?

Suppose you want to add an extra layer of credentials on top of a SSL-encrypted login/password, but you don't want to increase complexity to the user. Is there a way to add the requirement of the ...
5
votes
2answers
204 views

How can I use Delphi to create a visual challenge / response for restoring access to an application?

I'm interested in creating a challenge / response type process in Delphi. The scenario is this...we have 2 computers...1 belongs to the user and 1 belongs to a support technician. The user is locked ...
3
votes
2answers
526 views

How does challenge-response protocol help against man-in-the-middle attacks?

How does challenge-response authentication prevent man-in-the-middle attacks? I read the wiki article but still I cannot understand.
2
votes
10answers
636 views

Security, crytography: Stupid Challege - Response protocol?

Ok guys just a small game: I have some specifications for a project. At some point they ask for the following to encrypt a password over the net, saying that it is a challenge response protocol: ...
1
vote
1answer
114 views

OAuth without browser and SSL / challenge-response model

We have a plan for developing a mobile application using REST-ful. We want to apply OAuth 1.0a not OAuth 2.0 because we don't use SSL. We also don't want to use web browser (we think PIN-based UX is ...
1
vote
2answers
595 views

What are some efficient ways to generate challenge/response for a backdoor entry scheme?

We have a system that uses password authentication to access a database, the usernames and encrypted passwords are stored in the database. when a user forgets their password, (or the administrator ...
0
votes
4answers
93 views

jCryption + CRAM are a good alternative to SSL?

I would like to know if jCryption + Challenge Response Authentication Mechanism are a good alternative to SSL. I know that SSL is very much better, but I'm making a project where the owner don't want ...
0
votes
1answer
109 views

How does the Socialist Millionaire Protocol differ from a simple Challenge-Response like CHAP?

this is a clueluess question, but what does the Socialist Millionaire Protocol, which is typically used in conjunction with OTR-Messaging, that "conventional" Challenge-Response Mechanisms like CHAP ...
0
votes
1answer
667 views

How to use the Java SASL API and CRAM-MD5

I'm currently playing with the Java SASL API and I wrote a little program to simulate a challenge response sequence using CRAM-MD5. However, I'm unsure about how to do this, as SaslClient and ...