From 02cd1fc7c4d5722c78ec1f586044ff21dea98975 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sun, 20 Oct 2013 22:36:32 -0500 Subject: simplify HMAC_CTX typedef --- cryptography/bindings/openssl/hmac.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cryptography/bindings/openssl/hmac.py b/cryptography/bindings/openssl/hmac.py index 7a9d05b5..e97ac35e 100644 --- a/cryptography/bindings/openssl/hmac.py +++ b/cryptography/bindings/openssl/hmac.py @@ -16,8 +16,7 @@ INCLUDES = """ """ TYPES = """ -struct hmac_ctx_st { ...; }; -typedef struct hmac_ctx_st HMAC_CTX; +typedef struct { ...; } HMAC_CTX; """ FUNCTIONS = """ -- cgit v1.2.3