Metadata-Version: 2.1
Name: SPV
Version: 1.0.0
Summary: SPV Secure Password Varification
Home-page: https://github.com/mastercodermerwin/SPV-SecurePasswordVerification-
Author: Merwin
Author-email: <merwinmathews1001@gmail.com>
License: MIT
Project-URL: Bug Tracker, https://github.com/mastercodermerwin/SPV-SecurePasswordVerification-/issues
Keywords: python,secure,password,varification,user,client
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: cryptography


# SPV SecurePasswordVerification 1.0.0


Its is python module for doing a secure password  verification without sharing the password directly.



## Features

- The password is never sent in the process.
- Its more secure.
- Examples Provided


## Usage/Examples

spv.GetVerified(password)

Used by a Client to GetVerified by a Server.

```
spv = SPV.SPV(client_sock)

spv.GetVerified("real_password")  #returns True if Verified.
```

spv.Verify(password)

Used by a Server to Verify a Client.
```
client, address = server.accept()

spv = SPV.SPV(server)

spv.Verify("real_password",client)  #returns True if Verified.
```


