commit | 02cd1fc7c4d5722c78ec1f586044ff21dea98975 | [log] [tgz] |
---|---|---|
author | Paul Kehrer <paul.l.kehrer@gmail.com> | Sun Oct 20 22:36:32 2013 -0500 |
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | Sun Oct 20 22:36:32 2013 -0500 |
tree | 97fc54775308b0d4f078ceb6b08221a3297114ef | |
parent | c5833bfcad56fe44e30455dc037c2874e425b241 [diff] |
simplify HMAC_CTX typedef
diff --git a/cryptography/bindings/openssl/hmac.py b/cryptography/bindings/openssl/hmac.py index 7a9d05b..e97ac35 100644 --- a/cryptography/bindings/openssl/hmac.py +++ b/cryptography/bindings/openssl/hmac.py
@@ -16,8 +16,7 @@ """ TYPES = """ -struct hmac_ctx_st { ...; }; -typedef struct hmac_ctx_st HMAC_CTX; +typedef struct { ...; } HMAC_CTX; """ FUNCTIONS = """