aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurens Van Houtven <_@lvh.cc>2014-06-20 14:32:47 +0200
committerLaurens Van Houtven <_@lvh.cc>2014-06-20 14:32:47 +0200
commitccda65b5aab046e71e301ff2ca65f1a189256729 (patch)
tree529e1902d8c2a46f9cb5fe16d8e6deab826e7108
parentae234b70307ca0a1c1eece5efd9714518d611bc3 (diff)
downloadcryptography-ccda65b5aab046e71e301ff2ca65f1a189256729.tar.gz
cryptography-ccda65b5aab046e71e301ff2ca65f1a189256729.tar.bz2
cryptography-ccda65b5aab046e71e301ff2ca65f1a189256729.zip
Comment style consistency
-rw-r--r--cryptography/hazmat/bindings/openssl/x509_vfy.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cryptography/hazmat/bindings/openssl/x509_vfy.py b/cryptography/hazmat/bindings/openssl/x509_vfy.py
index 338e81ed..031a5227 100644
--- a/cryptography/hazmat/bindings/openssl/x509_vfy.py
+++ b/cryptography/hazmat/bindings/openssl/x509_vfy.py
@@ -136,12 +136,12 @@ static const long X509_V_FLAG_PARTIAL_CHAIN;
FUNCTIONS = """
int X509_verify_cert(X509_STORE_CTX *);
-/* X509_STORE */
+// X509_STORE
X509_STORE *X509_STORE_new(void);
void X509_STORE_free(X509_STORE *);
int X509_STORE_add_cert(X509_STORE *, X509 *);
-/* X509_STORE_CTX */
+// X509_STORE_CTX
int X509_STORE_CTX_get_error(X509_STORE_CTX *);
void X509_STORE_CTX_set_error(X509_STORE_CTX *, int);
int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *);
@@ -149,7 +149,7 @@ X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *);
int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *, int, void *);
void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *, int);
-/* X509_VERIFY_PARAM */
+// X509_VERIFY_PARAM
X509_VERIFY_PARAM *X509_VERIFY_PARAM_new(void);
int X509_VERIFY_PARAM_set_flags(X509_VERIFY_PARAM *, unsigned long);
int X509_VERIFY_PARAM_clear_flags(X509_VERIFY_PARAM *, unsigned long);