diff options
author | Donald Stufft <donald@stufft.io> | 2013-10-19 10:46:51 -0700 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2013-10-19 10:46:51 -0700 |
commit | 64fdae0e0abf45d35bd219175f8253f031081801 (patch) | |
tree | 7bb1b312cbf29978d00131440ac2a87c6380fb14 | |
parent | 00d9856368147d60f330aaca3b68f9b5566dcb7b (diff) | |
parent | 2984b3f8fb433b4cbe5ec6712886db32f597e8af (diff) | |
download | cryptography-64fdae0e0abf45d35bd219175f8253f031081801.tar.gz cryptography-64fdae0e0abf45d35bd219175f8253f031081801.tar.bz2 cryptography-64fdae0e0abf45d35bd219175f8253f031081801.zip |
Merge pull request #132 from alex/bind-pkcs12
Bind pkcs12. Refs #77
-rw-r--r-- | cryptography/bindings/openssl/api.py | 1 | ||||
-rw-r--r-- | cryptography/bindings/openssl/pkcs12.py | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/cryptography/bindings/openssl/api.py b/cryptography/bindings/openssl/api.py index dd954b01..30f95b84 100644 --- a/cryptography/bindings/openssl/api.py +++ b/cryptography/bindings/openssl/api.py @@ -38,6 +38,7 @@ class API(object): "nid", "opensslv", "pkcs7", + "pkcs12", "rand", "rsa", "ssl", diff --git a/cryptography/bindings/openssl/pkcs12.py b/cryptography/bindings/openssl/pkcs12.py new file mode 100644 index 00000000..92e3b12f --- /dev/null +++ b/cryptography/bindings/openssl/pkcs12.py @@ -0,0 +1,34 @@ +# 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/pkcs12.h> +""" + +TYPES = """ +typedef ... PKCS12; +""" + +FUNCTIONS = """ +int PKCS12_parse(PKCS12 *, const char *, EVP_PKEY **, X509 **, + struct stack_st_X509 **); +PKCS12 *PKCS12_create(char *, char *, EVP_PKEY *, X509 *, + struct stack_st_X509 *, int, int, int, int, int); +void PKCS12_free(PKCS12 *); + +PKCS12 *d2i_PKCS12_bio(BIO *, PKCS12 **); +int i2d_PKCS12_bio(BIO *, PKCS12 *); +""" + +MACROS = """ +""" |