This commit is contained in:
Dain Nilsson 2019-10-24 13:05:46 +02:00
commit 391c5ca65e
No known key found for this signature in database
GPG Key ID: F04367096FBA95E8
2 changed files with 2 additions and 2 deletions

View File

@ -158,7 +158,7 @@ class SignatureData(bytes):
super(SignatureData, self).__init__()
reader = ByteBuffer(self)
self.user_presence = reader.unpack(">B")
self.user_presence = reader.unpack("B")
self.counter = reader.unpack(">I")
self.signature = reader.read()

View File

@ -253,7 +253,7 @@ class AuthenticatorData(bytes):
reader = ByteBuffer(self)
self.rp_id_hash = reader.read(32)
self.flags = reader.unpack(">B")
self.flags = reader.unpack("B")
self.counter = reader.unpack(">I")
rest = reader.read()