diff options
| author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-01 14:41:39 -0500 | 
|---|---|---|
| committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-01 14:41:39 -0500 | 
| commit | 4e52e7e50650b88d0e2c50bd5366bb0da1c5634d (patch) | |
| tree | 667d29edafb0a0a08c9a3adaca2e59a5d4acb714 /cryptography | |
| parent | 9ca40b45229e26a08a42bd682ab7ed646f15d142 (diff) | |
| download | cryptography-4e52e7e50650b88d0e2c50bd5366bb0da1c5634d.tar.gz cryptography-4e52e7e50650b88d0e2c50bd5366bb0da1c5634d.tar.bz2 cryptography-4e52e7e50650b88d0e2c50bd5366bb0da1c5634d.zip | |
more _ctx required
Diffstat (limited to 'cryptography')
| -rw-r--r-- | cryptography/hazmat/backends/openssl/backend.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/cryptography/hazmat/backends/openssl/backend.py b/cryptography/hazmat/backends/openssl/backend.py index c8baa0e6..b5000d2e 100644 --- a/cryptography/hazmat/backends/openssl/backend.py +++ b/cryptography/hazmat/backends/openssl/backend.py @@ -1344,7 +1344,7 @@ class _RSASignatureContext(object):          sig_buf = self._backend._ffi.new("char[]", pkey_size)          sig_len = self._backend._ffi.new("unsigned int *")          res = self._backend._lib.EVP_SignFinal( -            self._hash_ctx._ctx, +            self._hash_ctx._ctx._ctx,              sig_buf,              sig_len,              evp_pkey | 
