diff options
| author | Ayrx <terrycwk1994@gmail.com> | 2014-02-12 18:05:43 +0800 |
|---|---|---|
| committer | Ayrx <terrycwk1994@gmail.com> | 2014-02-21 11:13:35 +0800 |
| commit | 00cc90018a61e702ec78a9f33161518797da3713 (patch) | |
| tree | c0fea796cddbe7473d2f4aad7d86571fe00367bf /cryptography | |
| parent | d2f24580aa9e5f90c1011c2cfc7720077b74cd4d (diff) | |
| download | cryptography-00cc90018a61e702ec78a9f33161518797da3713.tar.gz cryptography-00cc90018a61e702ec78a9f33161518797da3713.tar.bz2 cryptography-00cc90018a61e702ec78a9f33161518797da3713.zip | |
Added HOTP implementation and associated tests
Diffstat (limited to 'cryptography')
| -rw-r--r-- | cryptography/hazmat/oath/__init__.py | 0 | ||||
| -rw-r--r-- | cryptography/hazmat/oath/hotp.py | 41 |
2 files changed, 41 insertions, 0 deletions
diff --git a/cryptography/hazmat/oath/__init__.py b/cryptography/hazmat/oath/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/cryptography/hazmat/oath/__init__.py diff --git a/cryptography/hazmat/oath/hotp.py b/cryptography/hazmat/oath/hotp.py new file mode 100644 index 00000000..319e66f2 --- /dev/null +++ b/cryptography/hazmat/oath/hotp.py @@ -0,0 +1,41 @@ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or +# implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import struct + +from cryptography.hazmat.primitives import constant_time +from cryptography.hazmat.primitives.hashes import SHA1 + + +class HOTP(object): + def __init__(self, secret, length, backend): + self.secret = secret + self.length = length + self.backend = backend + + def generate(self, counter): + sbit = self._dynamic_truncate(counter) + return str(sbit % (10**self.length)).zfill(self.length) + + def verify(self, hotp, counter): + return constant_time.bytes_eq(self.generate(counter), hotp) + + def _dynamic_truncate(self, counter): + ctx = self.backend.create_hmac_ctx(self.secret, SHA1) + ctx.update(struct.pack(">Q", counter)) + hmac_value = ctx.finalize() + + offset_bits = ord(hmac_value[19]) & 0b1111 + offset = int(offset_bits) + P = hmac_value[offset:offset+4] + return struct.unpack(">I", P)[0] & 0x7fffffff |
