diff options
author | Laurens Van Houtven <_@lvh.cc> | 2014-06-23 10:51:14 +0200 |
---|---|---|
committer | Laurens Van Houtven <_@lvh.cc> | 2014-06-23 10:51:14 +0200 |
commit | 38ca9d2f78238936430e83058d58af53c1669959 (patch) | |
tree | aecb274af695fa4ff08c9cf6718baa8bd6cb46bd | |
parent | 557df1c04ab900e7b1c11d20e5905bd06849137e (diff) | |
download | cryptography-38ca9d2f78238936430e83058d58af53c1669959.tar.gz cryptography-38ca9d2f78238936430e83058d58af53c1669959.tar.bz2 cryptography-38ca9d2f78238936430e83058d58af53c1669959.zip |
Fix dsa.py comment style
-rw-r--r-- | cryptography/hazmat/bindings/openssl/dsa.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cryptography/hazmat/bindings/openssl/dsa.py b/cryptography/hazmat/bindings/openssl/dsa.py index 7db03326..c9aa8882 100644 --- a/cryptography/hazmat/bindings/openssl/dsa.py +++ b/cryptography/hazmat/bindings/openssl/dsa.py @@ -19,15 +19,15 @@ INCLUDES = """ TYPES = """ typedef struct dsa_st { - // prime number (public) + /* Prime number (public) */ BIGNUM *p; - // 160-bit subprime, q | p-1 (public) + /* Subprime (160-bit, q | p-1, public) */ BIGNUM *q; - // generator of subgroup (public) + /* Generator of subgroup (public) */ BIGNUM *g; - // private key x + /* Private key x */ BIGNUM *priv_key; - // public key y = g^x + /* Public key y = g^x */ BIGNUM *pub_key; ...; } DSA; |