Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

For checking strength of password

Endpoint- /strength

Input format:
{
    "password":password
}

Response format:
 {
        'checked_string': text,
        'breach_status': status,
        'potential_issues': []
 }

For sign up-

Endpoint- /adduser

Input format:
{
    "username":username,
    "password":password
}
Response format:
{"message":"user already exists"}
{"message":"Account Successfully created"}

For login-

Endpoint- /login

Input format:
{
    "username":username,
    "password":password
}
Response format:
{"message": "Login successful"}
{"message": "Incorrect Password"}
{"message": "User does not exist"}

For face authentication:

Endpoint- /faceauth

Input format:
{
"image":[]
}
Responseformat:
{"message": "Face Authenticated"}
{"message": "Face Not Authenticated"}

For saving password

Endpoint- /save

Input format:
{
    "username":username,
    "password":password,
    "reference":reference
}
Response format:
{"message": f"Password for {reference} Updated Successfully"}
{"message": "Password Added Successfully"}

For view of saved password

Endpoint- /savedpassword

Input format:
{
    "username":""
}
Response format:
{
    reference:password
}

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages