diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-01-07 14:40:25 -0800 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-01-07 21:26:37 -0800 |
commit | 8c66f74a94d96b5eae23413118ee0ab05d1a52bc (patch) | |
tree | 6d256f497e09d43d5cfbdf34666fd2a2118fdffa /src/_cffi_src/openssl | |
parent | bbeb555933abb17b231c95f6ea0780910326b11a (diff) | |
download | cryptography-8c66f74a94d96b5eae23413118ee0ab05d1a52bc.tar.gz cryptography-8c66f74a94d96b5eae23413118ee0ab05d1a52bc.tar.bz2 cryptography-8c66f74a94d96b5eae23413118ee0ab05d1a52bc.zip |
opaque EVP_PKEY since EVP_PKEY_id exists
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r-- | src/_cffi_src/openssl/evp.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/_cffi_src/openssl/evp.py b/src/_cffi_src/openssl/evp.py index 6d17cb7c..3bd675f7 100644 --- a/src/_cffi_src/openssl/evp.py +++ b/src/_cffi_src/openssl/evp.py @@ -21,10 +21,7 @@ typedef struct env_md_ctx_st { ...; } EVP_MD_CTX; -typedef struct evp_pkey_st { - int type; - ...; -} EVP_PKEY; +typedef ... EVP_PKEY; typedef ... EVP_PKEY_CTX; static const int EVP_PKEY_RSA; static const int EVP_PKEY_DSA; |