aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-10 22:39:54 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-10 22:39:54 -0600
commit8e306b793abe07e631779510def8da659db9e040 (patch)
tree8d22029e1c2fd10c90108a0ce9fb748769554c34
parentd1de411a6339671b7a1b03fa621d2f61fc3780cb (diff)
downloadcryptography-8e306b793abe07e631779510def8da659db9e040.tar.gz
cryptography-8e306b793abe07e631779510def8da659db9e040.tar.bz2
cryptography-8e306b793abe07e631779510def8da659db9e040.zip
remove extraneous spaces
-rw-r--r--cryptography/hazmat/bindings/commoncrypto/common_hmac.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/bindings/commoncrypto/common_hmac.py b/cryptography/hazmat/bindings/commoncrypto/common_hmac.py
index a4abcb04..72945364 100644
--- a/cryptography/hazmat/bindings/commoncrypto/common_hmac.py
+++ b/cryptography/hazmat/bindings/commoncrypto/common_hmac.py
@@ -32,8 +32,8 @@ typedef uint32_t CCHmacAlgorithm;
FUNCTIONS = """
void CCHmacInit(CCHmacContext *, CCHmacAlgorithm, const void *, size_t);
-void CCHmacUpdate( CCHmacContext *, const void *, size_t);
-void CCHmacFinal( CCHmacContext *, void *);
+void CCHmacUpdate(CCHmacContext *, const void *, size_t);
+void CCHmacFinal(CCHmacContext *, void *);
"""