aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurens Van Houtven <_@lvh.cc>2014-06-23 10:49:44 +0200
committerLaurens Van Houtven <_@lvh.cc>2014-06-23 10:49:44 +0200
commit557df1c04ab900e7b1c11d20e5905bd06849137e (patch)
tree78dcfff42e7c22919b7b8c21e37723f920f9e00f
parentb184ab4a6e83180a0697375c0a47612469fd4216 (diff)
downloadcryptography-557df1c04ab900e7b1c11d20e5905bd06849137e.tar.gz
cryptography-557df1c04ab900e7b1c11d20e5905bd06849137e.tar.bz2
cryptography-557df1c04ab900e7b1c11d20e5905bd06849137e.zip
Fix dh.py comment style
-rw-r--r--cryptography/hazmat/bindings/openssl/dh.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/cryptography/hazmat/bindings/openssl/dh.py b/cryptography/hazmat/bindings/openssl/dh.py
index a0f99479..e2e8976e 100644
--- a/cryptography/hazmat/bindings/openssl/dh.py
+++ b/cryptography/hazmat/bindings/openssl/dh.py
@@ -19,13 +19,13 @@ INCLUDES = """
TYPES = """
typedef struct dh_st {
- // prime number (shared)
+ /* Prime number (shared) */
BIGNUM *p;
- // generator of Z_p (shared)
+ /* Generator of Z_p (shared) */
BIGNUM *g;
- // private DH value x
+ /* Private DH value x */
BIGNUM *priv_key;
- // public DH value g^x
+ /* Public DH value g^x */
BIGNUM *pub_key;
...;
} DH;