]> www.wagner.pp.ru Git - oss/ctypescrypto.git/commitdiff
Merge branch 'master' of https://github.com/vbwagner/ctypescrypto
authorVictor Wagner <vitus@bsd64.bf.postgrespro.ru>
Wed, 22 Jun 2016 11:07:39 +0000 (14:07 +0300)
committerVictor Wagner <vitus@bsd64.bf.postgrespro.ru>
Wed, 22 Jun 2016 11:07:39 +0000 (14:07 +0300)
ctypescrypto/engine.py
ctypescrypto/x509.py

index f5bdb7514f007ba6f10e0ae3dadb800a53328e90..79f6218aa0a3beee5558bec9f357d9f1cb47cd5d 100644 (file)
@@ -69,3 +69,7 @@ libcrypto.ENGINE_set_default.argtypes = (c_void_p, c_int)
 libcrypto.ENGINE_ctrl_cmd_string.argtypes = (c_void_p, c_char_p, c_char_p,
                                              c_int)
 libcrypto.ENGINE_finish.argtypes = (c_char_p, )
+libcrypto.ENGINE_init.argtypes = (c_void_p, )
+libcrypto.UI_OpenSSL.restype = c_void_p
+libcrypto.ENGINE_load_private_key.argtypes = (c_void_p, c_char_p, c_void_p, c_void_p)
+libcrypto.ENGINE_load_private_key.restype = c_void_p
index 2226ed987ca8878059049112f58b23c30e225fe2..51f553a2dc09afb5225a35cd7e440c06f58c3737 100644 (file)
@@ -641,6 +641,7 @@ libcrypto.X509_STORE_new.restype = c_void_p
 libcrypto.X509_STORE_add_lookup.restype = c_void_p
 libcrypto.X509_STORE_add_lookup.argtypes = (c_void_p, c_void_p)
 libcrypto.X509_STORE_add_cert.argtypes = (c_void_p, c_void_p)
+libcrypto.X509_STORE_CTX_new.restype = c_void_p
 libcrypto.X509_STORE_CTX_free.argtypes = (c_void_p,)
 libcrypto.X509_STORE_CTX_init.argtypes = (c_void_p, c_void_p, c_void_p,
                                             c_void_p)
@@ -683,6 +684,7 @@ libcrypto.sk_set.restype = c_void_p
 libcrypto.sk_value.argtypes = (c_void_p, c_int)
 libcrypto.sk_value.restype = c_void_p
 libcrypto.sk_delete.argtypes = (c_void_p, c_int)
+libcrypto.sk_delete.restype = c_void_p
 libcrypto.sk_new_null.restype = c_void_p
 libcrypto.sk_pop_free.argtypes = (c_void_p, c_void_p)
 libcrypto.sk_push.argtypes = (c_void_p, c_void_p)