aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Stapleton <alexs@prol.etari.at>2014-01-18 09:36:45 +0000
committerAlex Stapleton <alexs@prol.etari.at>2014-01-18 09:36:45 +0000
commitf72b557efecbb1c78411775f6f89f7b0a7c98841 (patch)
treee2d367b3fdb1755611bfb40a78e9af1352259740
parentf6ff9a73d2b223dada3fb862989ba9977e37bf24 (diff)
downloadcryptography-f72b557efecbb1c78411775f6f89f7b0a7c98841.tar.gz
cryptography-f72b557efecbb1c78411775f6f89f7b0a7c98841.tar.bz2
cryptography-f72b557efecbb1c78411775f6f89f7b0a7c98841.zip
Tell cffi these opaque types are pointers.
Fixes #469
-rw-r--r--cryptography/hazmat/bindings/openssl/engine.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/cryptography/hazmat/bindings/openssl/engine.py b/cryptography/hazmat/bindings/openssl/engine.py
index 390bfde1..77118e81 100644
--- a/cryptography/hazmat/bindings/openssl/engine.py
+++ b/cryptography/hazmat/bindings/openssl/engine.py
@@ -24,11 +24,11 @@ typedef ... ECDSA_METHOD;
typedef ... DH_METHOD;
typedef ... RAND_METHOD;
typedef ... STORE_METHOD;
-typedef ... ENGINE_GEN_INT_FUNC_PTR;
-typedef ... ENGINE_CTRL_FUNC_PTR;
-typedef ... ENGINE_LOAD_KEY_PTR;
-typedef ... ENGINE_CIPHERS_PTR;
-typedef ... ENGINE_DIGESTS_PTR;
+typedef ... *ENGINE_GEN_INT_FUNC_PTR;
+typedef ... *ENGINE_CTRL_FUNC_PTR;
+typedef ... *ENGINE_LOAD_KEY_PTR;
+typedef ... *ENGINE_CIPHERS_PTR;
+typedef ... *ENGINE_DIGESTS_PTR;
typedef ... ENGINE_CMD_DEFN;
typedef ... UI_METHOD;