WO2020082403A1 - 一种单输入框登录验证方法 - Google Patents

一种单输入框登录验证方法 Download PDF

Info

Publication number
WO2020082403A1
WO2020082403A1 PCT/CN2018/112872 CN2018112872W WO2020082403A1 WO 2020082403 A1 WO2020082403 A1 WO 2020082403A1 CN 2018112872 W CN2018112872 W CN 2018112872W WO 2020082403 A1 WO2020082403 A1 WO 2020082403A1
Authority
WO
WIPO (PCT)
Prior art keywords
separator
password
login
character string
input box
Prior art date
Application number
PCT/CN2018/112872
Other languages
English (en)
French (fr)
Inventor
黄超
Original Assignee
黄超
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 黄超 filed Critical 黄超
Publication of WO2020082403A1 publication Critical patent/WO2020082403A1/zh

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F21/00Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F21/30Authentication, i.e. establishing the identity or authorisation of security principals
    • G06F21/45Structures or tools for the administration of authentication
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F21/00Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F21/30Authentication, i.e. establishing the identity or authorisation of security principals
    • G06F21/31User authentication

Definitions

  • the invention relates to the field of information verification technology, in particular to a single input box login verification method.
  • Login verification is the user's Internet or enterprise management system verification method.
  • the existing login interface includes two input boxes, one of which is used to enter the account number, and the other is used to enter the password. After the user enters the account number and password, the system will The two input character strings are sent to the server. The server compares the entered account and password with the account and password stored during registration to determine whether they are consistent. If they are different, the login fails, and if they are the same, the login is successful.
  • the user After entering the account number, the user needs to click the mouse or press the Tab key to select another input box to enter the password.
  • the design of the login interface it is necessary to design two input boxes, and use the code to set the attributes and parameters of the two input boxes. Therefore, the two input boxes reduce the efficiency of login and interface design, and increase the difficulty of interface design .
  • the purpose of the embodiments of the present invention is to provide a single input box login verification method to improve login efficiency and design efficiency, and reduce the difficulty of interface design.
  • the login interface includes an input box for entering verification information when logging in. There are only one input box;
  • the login verification method is:
  • S1 The user enters the verification information into the input box and sends the verification information to the server;
  • S2 The server compares the verification information with the data in the database; if there is information data in the server that matches the verification information entered by the user, the login is successful; if there is no information in the server that matches the verification information entered by the user Data, the login fails.
  • the verification information is a combined character string formed by combining a continuous account character string and a continuous password character string;
  • the verification method in S2 is:
  • A1 Split the combined character string into account and password
  • A2 Verify, compare the split account with the account stored in the database when registering, and judge whether it is the same;
  • A3 If the split account is different from the account stored in the database during registration, it will prompt failure to log in or error in login account; if the split account is the same as the account stored in the database during registration, the split Compare the password with the password stored during registration in the database to determine whether it is the same;
  • A4 If the split password is different from the password stored in the database during registration, it will prompt failure to log in or the wrong login password; if the split password is the same as the password stored in the database during registration, the login is successful.
  • the splitting method in A1 is: the combined character string includes a spacer, and the user inserts a separator (such as a space) between the entered account and password, and the registered account and password do not include Separator;
  • the login system sends the information entered in the input box to the server.
  • the server parses the information in the input box.
  • the parsing method is as follows: the position of the separator is the split point, and the string before the separator and the back
  • the character strings separated from each other are used as the account number and password for verification, and the character string obtained after the separation does not contain a separator.
  • the embodiment of the present invention is further set as follows: the combined character string includes an identifier, the user inserts the identifier in front of the input account, the registered account and password, and the inserted separator do not include the identifier;
  • the login system sends the information entered in the input box to the server, and the server parses the information in the input box.
  • the analysis method is:
  • Identify if the identifier refers to an account number, use the character string between the identifier and the separator as the account number, and use the character string after the separator as the password and verify;
  • the identifier refers to a password
  • the character after the separator is used as the account number
  • the character string between the identifier and the separator is used as the account number and verified
  • the character string obtained after splitting does not contain a separator, and the recognized character string does not contain an identifier.
  • the separator has an identification function for referring to the character string in front of the separator or the attribute of the character string after it, and the server judges that the character string in front of the separator is the account number according to the attribute identified by the separator Still the password.
  • the embodiment of the present invention is further configured: the server defaults to the character string in front of the separator as the account number, and the character string after the separator as the password; the user input sequence is: first enter the account number, then enter the separator, and then enter the password.
  • the embodiment of the present invention is further set as follows: the server defaults to the character string after the separator as the account number, and the character string before the separator as the password; the user input sequence is: first enter the password, then enter the separator, and then enter the account number.
  • the embodiment of the present invention is further configured such that the verification information does not include the account and password set during user registration, and the verification information is randomly generated by the login system or set by the user.
  • the advantage of the embodiment of the present invention is that: inputting the account number and password at the same time in a single input box can improve the efficiency of user login, reducing the attributes and parameter settings of an input box when designing the login interface, improving the efficiency of interface design, and reducing the interface The difficulty of design.
  • FIG. 1 is a schematic flowchart of the login verification method in Embodiment 1;
  • FIG. 2 is a schematic flowchart of a specific verification method for S2 in Embodiment 1.
  • FIG. 2 is a schematic flowchart of a specific verification method for S2 in Embodiment 1.
  • a single input box login verification method As shown in FIG. 1, the login interface includes an input box for entering verification information when logging in. There is only one input box, and the login verification method is:
  • S1 The user enters the verification information into the input box and sends the verification information to the server;
  • S2 The server compares the verification information with the data in the database; if there is information data in the server that matches the verification information entered by the user, the login is successful; if there is no information in the server that matches the verification information entered by the user Data, the login fails.
  • the verification information is a combined character string formed by combining a continuous account string and a continuous password string.
  • the verification method in S2 is:
  • A1 Split the combined character string into account and password
  • A2 Verify, compare the split account with the account stored in the database when registering, and judge whether it is the same;
  • A3 If the split account is different from the account stored in the database during registration, it will prompt failure to log in or error in login account; if the split account is the same as the account stored in the database during registration, the split Compare the password with the password stored during registration in the database to determine whether it is the same;
  • A4 If the split password is different from the password stored in the database during registration, it will prompt failure to log in or the wrong login password; if the split password is the same as the password stored in the database during registration, the login is successful.
  • the simultaneous input of account number and password in a single input box can improve the efficiency of user login.
  • the attribute and parameter settings of an input box are reduced during the design of the login interface, which improves the efficiency of interface design and reduces the difficulty of interface design.
  • the split method in A1 is: the combined string includes a spacer, the user inserts a separator (such as a space or a specific letter, etc.) between the entered account and password, and the registered account and password do not contain the separator, so the user registers
  • a separator is included, and the system prompts "Cannot contain a separator"; the system logs in to send the information entered in the input box to the server, and the server parses the information in the input box.
  • the resolution method is: where the separator is The position is the split site. The character string before the separator and the character string after it are separated from each other as the account number and password for verification. The resulting character string does not contain the separator.
  • the server uses the character string before the separator as the account number, and the character string after the separator as the password; the user input sequence is: first enter the account number, then enter the separator, and then enter the password.
  • a single input box login verification method which differs from Embodiment 1 in that the combined character string includes an identifier, the user inserts the identifier in front of the input account number, the registered account number and password, and the inserted separator do not contain the identifier .
  • the login system sends the information entered in the input box to the server, and the server parses the information in the input box.
  • the analysis method is:
  • Identify if the identifier refers to an account number, use the character string between the identifier and the separator as the account number, and use the character string after the separator as the password and verify;
  • the identifier refers to a password
  • the character after the separator is used as the account number
  • the character string between the identifier and the separator is used as the account number and verified
  • the character string obtained after splitting does not contain a separator, and the recognized character string does not contain an identifier.
  • a single input box login verification method which differs from Embodiment 1 in that the separator has an identification function, which is used to refer to the attribute of the character string in front of the separator or the character string after the separator, and the server identifies according to the separator The property determines whether the string before the separator is the account number or password.
  • a single input box login verification method is different from Embodiment 1 in that the server defaults to the character string after the separator as the account number, and the character string before the separator as the password; the user input sequence is: first enter the password, Then enter the separator, and then enter the account number.
  • a single input box login verification method differs from Embodiment 1 in that the verification information does not include the account number and password set during user registration, and the verification information is randomly generated by the login system or set by the user.
  • the server does not need to compare the verification information entered by the user with the registered account and password stored in the database, which improves the calculation efficiency, shortens the length of the character string remembered by the user, improves the login efficiency, and makes the login more convenient.

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Security & Cryptography (AREA)
  • Theoretical Computer Science (AREA)
  • Computer Hardware Design (AREA)
  • Software Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Information Transfer Between Computers (AREA)
  • User Interface Of Digital Computer (AREA)

Abstract

一种单输入框登录验证方法,登录界面包括用于登录时输入验证信息的输入框,输入框有且仅有一个;登录验证方法为:S1:用户将验证信息输入输入框并将验证信息发送至服务器;S2:服务器将验证信息与数据库中的数据进行对比验证;若服务器中存在与用户输入的验证信息相匹配的信息数据,则登录成功;若服务器中不存在与用户输入的验证信息相匹配的信息数据,则登录失败;单个输入框同时输入账号和密码可提高用户登录的效率,在登录界面设计时减少了一个输入框的属性和参数设定,提高了界面设计的效率,降低了界面设计的难度。

Description

一种单输入框登录验证方法 技术领域
本发明涉及信息验证技术领域,具体涉及一种单输入框登录验证方法。
背景技术
登录验证是用户互联网或企业管理系统的验证方式,现有登录界面包括两个输入框,其中一个输入框用于输入账号,另一个输入框用于输入密码,用户输入账号和密码之后,系统将输入的两条字符串发送给服务器,服务器将输入的账号和密码与注册时存储的账号和密码对比,判断是否一致,若不同则登录失败,若相同则登录成功。
用户输入账号后需要用鼠标点击或按Tab键选中另一个输入框输入密码。在登录界面的设计上,需要设计两个输入框,使用代码对两个输入框的属性和参数进行设定,因此,两个输入框降低了登录效率和界面设计效率,增加了界面设计的难度。
发明内容
本发明实施例的目的在于提供一种单输入框登录验证方法,用以提高登录效率和设计效率,降低界面设计难度。
为实现上述目的,本发明实施例的技术方案为:
一种单输入框登录验证方法,登录界面包括用于登录时输入验证信息的输入框,输入框有且仅有一个;
登录验证方法为:
S1:用户将验证信息输入输入框并将验证信息发送至服务器;
S2:服务器将验证信息与数据库中的数据进行对比验证;若服务器 中存在与用户输入的验证信息相匹配的信息数据,则登录成功;若服务器中不存在与用户输入的验证信息相匹配的信息数据,则登录失败。
本发明实施例进一步设置为:所述验证信息为连续的账号字符串和连续的密码字符串相组合形成的组合字符串;
所述S2中的验证方法为:
A1:将组合字符串拆分为账号和密码;
A2:验证,将拆分得到的账号与数据库中注册时存储的账号对比,判断是否相同;
A3:若拆分得到的账号与数据库中注册时存储的账号不同,则提示登录失败或提示登录账号错误;若拆分得到的账号与数据库中注册时存储的账号相同,则将拆分得到的密码与数据库中注册时存储的密码对比,判断是否相同;
A4:若拆分得到的密码与数据库中注册时存储的密码不同,则提示登录失败或提示登录密码错误;若拆分得到的密码与数据库中注册时存储的密码相同,则登录成功。
本发明实施例进一步设置为:所述A1中的拆分方法为:组合字符串包括间隔符,用户在输入的账号和密码之间插入分隔符(如空格、),注册的账号和密码不包含分隔符;登录系统将输入框中输入的信息发送至服务器,服务器对输入框中的信息进行解析,解析方法为:以分隔符所在位置为拆分位点,将分隔符前面的字符串和后面的字符串相互拆分开作为账号和密码进行验证,拆分后得到的字符串不包含分隔符。
本发明实施例进一步设置为:组合字符串包括标识符,用户在输入的账号前面插入标识符,注册的账号和密码以及插入的分隔符不包含标识符;
登录系统将输入框中输入的信息发送至服务器,服务器对输入框中的信息进行解析,解析方法为:
以分隔符所在位置为拆分位点,将分隔符前面的字符串和后面的字符串相互拆分开,然后判断标识符指代的是账号还是密码;
识别,若标识符指代的是账号,则将标识符和分隔符之间的字符串作为账号,将分隔符后面的字符串作为密码并进行验证;
若标识符指代的是密码,则将分隔符后面的字符作为账号,将标识符和分隔符之间的字符串作为账号并进行验证;
拆分后得到的字符串不包含分隔符,经过识别的字符串不包含标识符。
本发明实施例进一步设置为:分隔符具有标识功能,用于指代分隔符前面的字符串或指代后面的字符串的属性,服务器根据分隔符标识的属性判断分隔符前面的字符串是账号还是密码。
本发明实施例进一步设置为:服务器默认以分隔符前面的字符串为账号,分隔符后面的字符串为密码;用户输入的顺序为:先输入账号,再输入分隔符,后输入密码。
本发明实施例进一步设置为:服务器默认以分隔符后面的字符串为账号,分隔符前面的字符串为密码;用户输入的顺序为:先输入密码,再输入分隔符,后输入账号。
本发明实施例进一步设置为:所述验证信息不包含用户注册时设置的账号和密码,验证信息由登录系统随机生成或由用户自定义设置。
本发明实施例的优点是:单个输入框同时输入账号和密码可提高用户登录的效率,在登录界面设计时减少了一个输入框的属性和参数设定,提高了界面设计的效率,降低了界面设计的难度。
附图说明
图1是实施例1中登录验证方法流程示意图;
图2是实施例1中体现S2具体验证方法的流程示意图。
具体实施方式
以下实施例用于说明本发明,但不用来限制本发明的范围。
实施例1
一种单输入框登录验证方法,如图1所示,登录界面包括用于登录时输入验证信息的输入框,输入框有且仅有一个,登录验证方法为:
S1:用户将验证信息输入输入框并将验证信息发送至服务器;
S2:服务器将验证信息与数据库中的数据进行对比验证;若服务器 中存在与用户输入的验证信息相匹配的信息数据,则登录成功;若服务器中不存在与用户输入的验证信息相匹配的信息数据,则登录失败。
结合图2,验证信息为连续的账号字符串和连续的密码字符串相组合形成的组合字符串,S2中的验证方法为:
A1:将组合字符串拆分为账号和密码;
A2:验证,将拆分得到的账号与数据库中注册时存储的账号对比,判断是否相同;
A3:若拆分得到的账号与数据库中注册时存储的账号不同,则提示登录失败或提示登录账号错误;若拆分得到的账号与数据库中注册时存储的账号相同,则将拆分得到的密码与数据库中注册时存储的密码对比,判断是否相同;
A4:若拆分得到的密码与数据库中注册时存储的密码不同,则提示登录失败或提示登录密码错误;若拆分得到的密码与数据库中注册时存储的密码相同,则登录成功。
单个输入框同时输入账号和密码可提高用户登录的效率,在登录界面设计时减少了一个输入框的属性和参数设定,提高了界面设计的效率,降低了界面设计的难度。
A1中的拆分方法为:组合字符串包括间隔符,用户在输入的账号和密码之间插入分隔符(如空格或特定字母等),注册的账号和密码不包含分隔符,因此,用户注册设置账号和密码时包含了分隔符,系统提示“不能包含分隔符”;登录系统将输入框中输入的信息发送至服务器,服务器对输入框中的信息进行解析,解析方法为:以分隔符所在位置为拆分位点,将分隔符前面的字符串和后面的字符串相互拆分开作为账号和密码进行验证,拆分后得到的字符串不包含分隔符。
服务器默认以分隔符前面的字符串为账号,分隔符后面的字符串为密码;用户输入的顺序为:先输入账号,再输入分隔符,后输入密码。
实施例2
一种单输入框登录验证方法,与实施例1的不同之处在于,组合字符串包括标识符,用户在输入的账号前面插入标识符,注册的账号和密码以及插入的分隔符不包含标识符。
登录系统将输入框中输入的信息发送至服务器,服务器对输入框中的信息进行解析,解析方法为:
以分隔符所在位置为拆分位点,将分隔符前面的字符串和后面的字符串相互拆分开,然后判断标识符指代的是账号还是密码;
识别,若标识符指代的是账号,则将标识符和分隔符之间的字符串作为账号,将分隔符后面的字符串作为密码并进行验证;
若标识符指代的是密码,则将分隔符后面的字符作为账号,将标识符和分隔符之间的字符串作为账号并进行验证;
拆分后得到的字符串不包含分隔符,经过识别的字符串不包含标识符。
实施例3
一种单输入框登录验证方法,与实施例1的不同之处在于,分隔符具有标识功能,用于指代分隔符前面的字符串或指代后面的字符串的属性,服务器根据分隔符标识的属性判断分隔符前面的字符串是账号还是密码。
实施例4
一种单输入框登录验证方法,与实施例1的不同之处在于,服务器默认以分隔符后面的字符串为账号,分隔符前面的字符串为密码;用户输入的顺序为:先输入密码,再输入分隔符,后输入账号。
实施例5
一种单输入框登录验证方法,与实施例1的不同之处在于,验证信息不包含用户注册时设置的账号和密码,验证信息由登录系统随机生成或由用户自定义设置。服务器不需要将用户输入的验证信息与数据库中存储的注册账号和密码相对比,提高运算效率,也缩短了用户记忆的字 符串长度,提高登录效率,登录更便捷。
虽然,上文中已经用一般性说明及具体实施例对本发明作了详尽的描述,但在本发明基础上,可以对之作一些修改或改进,这对本领域技术人员而言是显而易见的。因此,在不偏离本发明精神的基础上所做的这些修改或改进,均属于本发明要求保护的范围。

Claims (8)

  1. 一种单输入框登录验证方法,登录界面包括用于登录时输入验证信息的输入框,其特征是:输入框有且仅有一个;
    登录验证方法为:
    S1:用户将验证信息输入输入框并将验证信息发送至服务器;
    S2:服务器将验证信息与数据库中的数据进行对比验证;若服务器中存在与用户输入的验证信息相匹配的信息数据,则登录成功;若服务器中不存在与用户输入的验证信息相匹配的信息数据,则登录失败。
  2. 根据权利要求1所述的一种单输入框登录验证方法,其特征是,所述验证信息为连续的账号字符串和连续的密码字符串相组合形成的组合字符串;
    所述S2中的验证方法为:
    A1:将组合字符串拆分为账号和密码;
    A2:验证,将拆分得到的账号与数据库中注册时存储的账号对比,判断是否相同;
    A3:若拆分得到的账号与数据库中注册时存储的账号不同,则提示登录失败或提示登录账号错误;若拆分得到的账号与数据库中注册时存储的账号相同,则将拆分得到的密码与数据库中注册时存储的密码对比,判断是否相同;
    A4:若拆分得到的密码与数据库中注册时存储的密码不同,则提示登录失败或提示登录密码错误;若拆分得到的密码与数据库中注册时存储的密码相同,则登录成功。
  3. 根据权利要求2所述的一种单输入框登录验证方法,其特征是,所述A1中的拆分方法为:组合字符串包括间隔符,用户在输入的账号 和密码之间插入分隔符,注册的账号和密码不包含分隔符;登录系统将输入框中输入的信息发送至服务器,服务器对输入框中的信息进行解析,解析方法为:以分隔符所在位置为拆分位点,将分隔符前面的字符串和后面的字符串相互拆分开作为账号和密码进行验证,拆分后得到的字符串不包含分隔符。
  4. 根据权利要求3所述的一种单输入框登录验证方法,其特征是:组合字符串包括标识符,用户在输入的账号前面插入标识符,注册的账号和密码以及插入的分隔符不包含标识符;
    登录系统将输入框中输入的信息发送至服务器,服务器对输入框中的信息进行解析,解析方法为:
    以分隔符所在位置为拆分位点,将分隔符前面的字符串和后面的字符串相互拆分开,然后判断标识符指代的是账号还是密码;
    识别,若标识符指代的是账号,则将标识符和分隔符之间的字符串作为账号,将分隔符后面的字符串作为密码并进行验证;
    若标识符指代的是密码,则将分隔符后面的字符作为账号,将标识符和分隔符之间的字符串作为账号并进行验证;
    拆分后得到的字符串不包含分隔符,经过识别的字符串不包含标识符。
  5. 根据权利要求3所述的一种单输入框登录验证方法,其特征是:分隔符具有标识功能,用于指代分隔符前面的字符串或指代后面的字符串的属性,服务器根据分隔符标识的属性判断分隔符前面的字符串是账号还是密码。
  6. 根据权利要求3所述的一种单输入框登录验证方法,其特征是:服务器默认以分隔符前面的字符串为账号,分隔符后面的字符串为密码;用户输入的顺序为:先输入账号,再输入分隔符,后输入密码。
  7. 根据权利要求3所述的一种单输入框登录验证方法,其特征是:服务器默认以分隔符后面的字符串为账号,分隔符前面的字符串为密码;用户输入的顺序为:先输入密码,再输入分隔符,后输入账号。
  8. 根据权利要求1所述的一种单输入框登录验证方法,其特征是:所述验证信息不包含用户注册时设置的账号和密码,验证信息由登录系统随机生成或由用户自定义设置。
PCT/CN2018/112872 2018-10-22 2018-10-31 一种单输入框登录验证方法 WO2020082403A1 (zh)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201811231477.5A CN109492382B (zh) 2018-10-22 2018-10-22 一种单输入框登录验证方法
CN201811231477.5 2018-10-22

Publications (1)

Publication Number Publication Date
WO2020082403A1 true WO2020082403A1 (zh) 2020-04-30

Family

ID=65692526

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2018/112872 WO2020082403A1 (zh) 2018-10-22 2018-10-31 一种单输入框登录验证方法

Country Status (2)

Country Link
CN (1) CN109492382B (zh)
WO (1) WO2020082403A1 (zh)

Families Citing this family (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110147658A (zh) * 2019-04-16 2019-08-20 平安科技(深圳)有限公司 用户信息加解密方法、系统和计算机设备
CN110099070B (zh) * 2019-05-20 2021-04-30 黄超 一种单输入框登录验证方法和装置
CN110557400B (zh) * 2019-09-16 2022-11-15 平安科技(深圳)有限公司 登录控制的方法及装置
CN112231723A (zh) * 2020-10-10 2021-01-15 湖南皖湘科技有限公司 一种数字图片的加密解密方法
CN114120457B (zh) * 2021-09-07 2024-05-14 重庆亿连信息科技有限公司 一种基于手机端的停车自助缴费方法和查询车辆方法
CN114499973B (zh) * 2021-12-28 2023-09-01 重庆医药高等专科学校 一种用于资产管理系统的安全防护系统

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103546287A (zh) * 2012-07-17 2014-01-29 联想(北京)有限公司 密码验证方法和电子设备
CN104182680A (zh) * 2014-08-27 2014-12-03 上海斐讯数据通信技术有限公司 一种用户名密码管理、输入方法和系统
CN105722183A (zh) * 2016-03-18 2016-06-29 深圳市轱辘软件开发有限公司 Wi-Fi链接信息分享方法及装置

Family Cites Families (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103139162B (zh) * 2011-11-29 2016-08-24 阿里巴巴集团控股有限公司 一种网络账号的登陆方法及设备
CN104869127B (zh) * 2015-06-24 2018-09-04 郑州悉知信息科技股份有限公司 一种网站登录方法、扫码客户端及服务器
CN105450658B (zh) * 2015-11-26 2019-06-11 广州多益网络股份有限公司 一种系统登录方法及装置

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103546287A (zh) * 2012-07-17 2014-01-29 联想(北京)有限公司 密码验证方法和电子设备
CN104182680A (zh) * 2014-08-27 2014-12-03 上海斐讯数据通信技术有限公司 一种用户名密码管理、输入方法和系统
CN105722183A (zh) * 2016-03-18 2016-06-29 深圳市轱辘软件开发有限公司 Wi-Fi链接信息分享方法及装置

Also Published As

Publication number Publication date
CN109492382A (zh) 2019-03-19
CN109492382B (zh) 2022-08-23

Similar Documents

Publication Publication Date Title
WO2020082403A1 (zh) 一种单输入框登录验证方法
US11128467B2 (en) Systems and methods for digital identity management and permission controls within distributed network nodes
US10135818B2 (en) User biological feature authentication method and system
US8578476B2 (en) System and method for risk assessment of login transactions through password analysis
US20170149830A1 (en) Apparatus and method for automatically generating detection rule
WO2018076815A1 (zh) 格式转换方法及系统
JP2017530387A (ja) 人工知能に基づく声紋ログイン方法と装置
CN109587238A (zh) 区块链的数据处理和同步方法、装置、设备及存储介质
TW201543254A (zh) 用戶帳戶管理方法及裝置
CN106534119A (zh) 一种客户端软件登录信息的提示方法及装置
WO2019232868A1 (zh) 用户信息验证方法、装置、计算机设备及存储介质
CN113986968A (zh) 一种基于电力标准规范数据化的方案智能校对方法
US20230104862A1 (en) Systems and methods for identifying computing devices
CN108388606A (zh) 一种校验Sql语句中库表字段名的方法以及计算机设备
WO2023273059A1 (zh) 设备监控方法、系统、装置、计算机设备和存储介质
WO2016107415A1 (zh) 基于用户网络行为特征的辅助身份验证方法
US11368456B2 (en) User security profile for multi-media identity verification
US20210092028A1 (en) Network service activation system
US20060136738A1 (en) System and method for password validation
US9742641B2 (en) System and method for identifying real users behind application servers
US20170264625A1 (en) Security test tool
EP4220518A1 (en) Blockchain network-based device management method, related device, and storage medium
US9998495B2 (en) Apparatus and method for verifying detection rule
US11356266B2 (en) User authentication using diverse media inputs and hash-based ledgers
CN106933888A (zh) 数据库配置管理系统

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 18937740

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 18937740

Country of ref document: EP

Kind code of ref document: A1

32PN Ep: public notification in the ep bulletin as address of the adressee cannot be established

Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205A DATED 13.08.2021)