Metadata-Version: 2.1
Name: kryptolib
Version: 0.0.2
Summary: Krypto library for python
Home-page: https://github.com/subramanya-a/kryptolib
Author: Subramanya A
Author-email: subramanya.opensource@gmail.com
License: MIT license
Keywords: crypto,cryptography,security,DSA,signature,EdDSA,RFC_8032
Platform: any
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Security
Classifier: Development Status :: 5 - Production/Stable
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# KryptoLib

## Simple Krypto library

## About
krypto library provides a simple interface to sign, verify the digital signature for one or more krypto algorithms platforms independent.

## Documentation

## Quickstart

#### Install pip library
```
$ pip install kryptolib
```

#### Krypto framwork to generate key pair
```
from kryptolib import krypto_obj 
krypto = krypto_obj('Ed25519')
privkey,pubkey = krypto.keygen(secret_key)

```

#### Krypto framwork to generate signature
```
signature = krypto.sign(privkey, pubkey, msg)
```

#### Krypto framwork to verify signature
```
krypto.verify(public, msg, signature)
```

## Issues

Please submit a [new issue report on the GitHub repository](https://github.com/subramanya-a/kryptolib/issues) with a detailed overview of the problem that you are having.


## Project Contributors

- [Subramanya A](https://github.com/subramanya-a/) (@Subramanya.a)

---
[MIT License](https://github.com/subramanya-a/kryptolib/blob/master/docs/LICENSE) | Built with the [Kryptolib](https://pypi.python.org/pypi/Kryptolib)

