zoukankan      html  css  js  c++  java
  • Challenge–response authentication 挑战(询问)应答机制

    In computer securitychallenge–response authentication is a family of protocols in which one party presents a question ("challenge") and another party must provide a valid answer ("response") to be authenticated.

    The simplest example of a challenge–response protocol is password authentication, where the challenge is asking for the password and the valid response is the correct password.

    Clearly an adversary who can eavesdrop on a password authentication can then authenticate itself in the same way. One solution is to issue multiple passwords, each of them marked with an identifier. The verifier can ask for any of the passwords, and the prover must have that correct password for that identifier. Assuming that the passwords are chosen independently, an adversary who intercepts one challenge–response message pair has no clues to help with a different challenge at a different time.

    通常用于安全级别较高的找回密码等功能。比如qq、微信等,需要提供多重验证。

    基于会话的安全认证机制:

    A 老姑,我要和你借20元钱;

    B 你是?

    A 我是XX的儿子;

    B 你的伯父叫什么?姑姑叫什么?你爸兄妹几个?

    A 哔哩哔哩.....

    B 你爷爷叫什么?

    A bilibili

    B 50元够不够?

    A 够了;谢谢!

  • 相关阅读:
    new delete的内部实现代码
    子串的替换
    求字符串的长度
    TSQL语句学习(四)
    TSQL语句学习(二)
    杭电acm1036
    杭电acm2032
    杭电acm2045
    杭电acm2072
    杭电acm1029
  • 原文地址:https://www.cnblogs.com/feng9exe/p/8119435.html
Copyright © 2011-2022 走看看