Skip to main content

Password-protected secrets made easy.

Project description

https://img.shields.io/pypi/v/privy.svg?style=flat-square https://img.shields.io/travis/ofek/privy.svg?branch=master&style=flat-square https://img.shields.io/codecov/c/github/ofek/privy.svg?style=flat-square https://img.shields.io/pypi/pyversions/privy.svg?style=flat-square https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square

Privy is a small and fast utility for password-protecting secrets such as seeds for digital signatures or Bitcoin wallets.

Usage

>>> import privy
>>>
>>> secret = b'secret'
>>> password = 'foo'
>>>
>>> hidden = privy.hide(secret, password)
>>> hidden
'1$2$c016b66bd5...'
>>>
>>> privy.peek(hidden, password)
b'secret'

Installation

Privy is available on Linux/macOS and Windows and supports Python 2.7, 3.3+, PyPy, and PyPy3.3-5.5+.

$ pip install privy

Encryption scheme

Secrets are encrypted using the Fernet protocol. Specifically, it uses AES for encryption and has built-in authentication using HMAC. The private key used for encryption is derived from the password using a key derivation function. The key derivation function used is Argon2, the winner of the Password Hashing Competition. Both Argon2i and Argon2d variants are supported.

Secrets encrypted with default settings are unicode strings of length 269.

API

There are 2 functions: hide and peek.

hide(secret, password, security=2, salt=None, server=True)

Encrypts secret using password. Returns the hidden secret as unicode.

  • Parameters

    • secret (bytes) - The secret to encrypt.

    • password (bytes or unicode) - The password used to access the secret.

    • security (int) - A number 0-10 inclusive. Higher values are more secure at the cost of slower computation and greater use of memory. See security levels.

    • salt (bytes) - The salt used for the password hash. Defaults to os.urandom(32).

    • server (bool) - If True, it is assumed side-channel attack protection is needed and therefore the Argon2i algorithm will be used. Otherwise, the password will be hashed using the Argon2d algorithm.

peek(hidden, password, expires=None)

Decrypts hidden using password. Returns the secret as bytes.

  • Parameters

    • hidden (bytes or unicode) - The hidden secret to decrypt.

    • password (bytes or unicode) - The password used to access the secret.

    • expires (int) - The maximum number of seconds since encryption that is allowed. The default is no expiration.

A ValueError will be raised if the password is wrong, the password was attempted on a different hidden secret, or the number of seconds since encryption is > expires argument.

Security levels

All expected times were taken from tests on an Intel Core i7-2670QM @ 2.2 GHz.

Levels

Argon2 settings

Expected time

Notes

0

m=8 KiB, t=1

600 usec

Lowest possible

1

m=4 MiB, t=10

50 msec

2

m=8 MiB, t=10

100 msec

Default

3

m=32 MiB, t=10

350 msec

4

m=48 MiB, t=10

550 msec

5

m=96 MiB, t=10

1.1 sec

Good choice

6

m=256 MiB, t=10

3 sec

7

m=448 MiB, t=10

5.3 sec

8

m=768 MiB, t=10

9.1 sec

9

m=1 GiB, t=10

12.2 sec

10

m=2 GiB, t=20

48 sec

Lots of RAM

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

privy-1.0.0-py2.py3-none-any.whl (8.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file privy-1.0.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for privy-1.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 9a598204a8b216a97457e13a2732683fc91c5b519ee2c9fb6e04a447bb44efe8
MD5 76888c18dff23d6fbfc3249e72a9b3a2
BLAKE2b-256 d0dc2c5793302a1f93443de58f5ebf9d5f739614291460624b6ca95907bb18ee

See more details on using hashes here.

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