diff options
| author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-13 21:52:08 -0500 |
|---|---|---|
| committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-13 21:52:08 -0500 |
| commit | 34c075e6f331d146a617417e646170e8847c39e4 (patch) | |
| tree | 5a44fdf1fcb41d082b1103753c832242081b7280 /cryptography | |
| parent | f290f7d92d7608c6286b92ed235fdf4259627a5a (diff) | |
| download | cryptography-34c075e6f331d146a617417e646170e8847c39e4.tar.gz cryptography-34c075e6f331d146a617417e646170e8847c39e4.tar.bz2 cryptography-34c075e6f331d146a617417e646170e8847c39e4.zip | |
support --backend as a pytest flag to limit to one backend for testing
Diffstat (limited to 'cryptography')
| -rw-r--r-- | cryptography/hazmat/backends/openssl/backend.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cryptography/hazmat/backends/openssl/backend.py b/cryptography/hazmat/backends/openssl/backend.py index 07ee58c1..ee82ba71 100644 --- a/cryptography/hazmat/backends/openssl/backend.py +++ b/cryptography/hazmat/backends/openssl/backend.py @@ -37,6 +37,7 @@ class Backend(object): """ OpenSSL API binding interfaces. """ + name = "openssl" def __init__(self): self._binding = Binding() |
