diff options
-rw-r--r-- | cryptography/hazmat/bindings/commoncrypto/common_hmac.py | 4 |
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 *); """ |