diff options
| author | David Reid <dreid@dreid.org> | 2014-01-28 14:53:55 -0800 |
|---|---|---|
| committer | David Reid <dreid@dreid.org> | 2014-02-03 10:05:27 -0800 |
| commit | 98c182f81bf37c800bb7140c207ecbd71e1982a6 (patch) | |
| tree | b22dfc970cfad4dc06cb10224dd865c965207fe2 /cryptography | |
| parent | ec4155a4035736011d8e3857965c60a766dd48f3 (diff) | |
| download | cryptography-98c182f81bf37c800bb7140c207ecbd71e1982a6.tar.gz cryptography-98c182f81bf37c800bb7140c207ecbd71e1982a6.tar.bz2 cryptography-98c182f81bf37c800bb7140c207ecbd71e1982a6.zip | |
Consistently use double quotes.
Diffstat (limited to 'cryptography')
| -rw-r--r-- | cryptography/hazmat/primitives/kdf/hkdf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/primitives/kdf/hkdf.py b/cryptography/hazmat/primitives/kdf/hkdf.py index 959e8c9b..7dae2b6c 100644 --- a/cryptography/hazmat/primitives/kdf/hkdf.py +++ b/cryptography/hazmat/primitives/kdf/hkdf.py @@ -79,7 +79,7 @@ class HKDF(object): return self._expand(key_material) def _expand(self, key_material): - output = [b''] + output = [b""] counter = 1 while (self._algorithm.digest_size // 8) * len(output) < self._length: |
