diff options
author | Donald Stufft <donald@stufft.io> | 2013-10-04 21:19:49 -0700 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2013-10-04 21:19:49 -0700 |
commit | 66f225c5bb28281cd884d19c743cefd925124689 (patch) | |
tree | e36e43b031da8d3c7727f03552aa494a1f7faada | |
parent | 07877f48d4e04e456b708b8e8bdf9e8feff79837 (diff) | |
parent | 89ce40612a1e88e894901c0a86a17c0e55043689 (diff) | |
download | cryptography-66f225c5bb28281cd884d19c743cefd925124689.tar.gz cryptography-66f225c5bb28281cd884d19c743cefd925124689.tar.bz2 cryptography-66f225c5bb28281cd884d19c743cefd925124689.zip |
Merge pull request #87 from pyca/bind-dsa
Added bindings for OpenSSL's DSA. Refs #77.
-rw-r--r-- | cryptography/bindings/openssl/api.py | 1 | ||||
-rw-r--r-- | cryptography/bindings/openssl/dsa.py | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/cryptography/bindings/openssl/api.py b/cryptography/bindings/openssl/api.py index ab8aa3b6..673088ad 100644 --- a/cryptography/bindings/openssl/api.py +++ b/cryptography/bindings/openssl/api.py @@ -27,6 +27,7 @@ class API(object): _modules = [ "bignum", "crypto", + "dsa", "evp", "opensslv", ] diff --git a/cryptography/bindings/openssl/dsa.py b/cryptography/bindings/openssl/dsa.py new file mode 100644 index 00000000..2fa67b87 --- /dev/null +++ b/cryptography/bindings/openssl/dsa.py @@ -0,0 +1,30 @@ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or +# implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +INCLUDES = """ +#include <openssl/dsa.h> +""" + +TYPES = """ +typedef ... DSA; +""" + +FUNCTIONS = """ +DSA *DSA_generate_parameters(int, unsigned char *, int, int *, unsigned long *, + void (*)(int, int, void *), void *); +int DSA_generate_key(DSA *); +void DSA_free(DSA *); +""" + +MACROS = """ +""" |