Skip to main content

A library for making encryption/decryption easier

Project description

## Human Security

Basic security functions for human beings, and abstraction on top of cryptography

## Examples

```
message = 'hello world'
h = HumanAES()
h.generate()
print 'secret key is', h.key
assert h.decrypt(h.encrypt(message)) == message

h = HumanRSA()
h.generate()
print h.public_pem()
print h.private_pem()
# h.load_private_pem(...)
# h.load_public_pem(...)

encrypted = h.encrypt(message)
decrypted = h.decrypt(encrypted)
assert decrypted == message

signature = h.sign(message)
assert h.verify(message, signature)
```

## License

BSD v3 - Created by Prof. Massimo Di Pierro, 2018

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

human_security-0.1.tar.gz (2.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page