diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-02-06 12:16:19 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-02-06 12:16:19 -0500 |
commit | 75ff7995f6b65170b274ca7d40d8678093838105 (patch) | |
tree | 75116b7e9ec0eabdd88d0df0679e34826cf59e65 /src | |
parent | a626edb1722bb9d22435c632900585b4a9648a4f (diff) | |
download | cryptography-75ff7995f6b65170b274ca7d40d8678093838105.tar.gz cryptography-75ff7995f6b65170b274ca7d40d8678093838105.tar.bz2 cryptography-75ff7995f6b65170b274ca7d40d8678093838105.zip |
Added a comment so the efficiency of this jumps out to the next person
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptography/utils.py b/src/cryptography/utils.py index 22edd94f..53795732 100644 --- a/src/cryptography/utils.py +++ b/src/cryptography/utils.py @@ -45,6 +45,7 @@ else: while len(data) > 0: digit, = struct.unpack('>I', data[:4]) result = (result << 32) + digit + # TODO: this is quadratic in the length of data data = data[4:] return result |